|
I have a calendar built using PHP, with events on it.
I'm using jQuery UI to enable drag and drop to move the events around. The .droppable() function has a callback function attached that updates the database with the new information. But the calendar...
Started by Jason Rhodes on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
.droppable(function(){ $('#calendar').load('scriptname.php', {variable1: 'var1', etcYou could make an ajax call to a php function that re-builds the calendar after updating(event, ui) { location.reload(true); } });
....
The database.
|
|
I'm a beginner with C#, ASP.NET, SQL Server Express and programming in general. I'm trying to make an online calendar (on a deadline). I'll read all the other posts that are similar to this, but for now I have a question that I hope will set me on my ...
Started by Mike on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
SqlConnection connection = new SqlConnection)); } // Close the connection... .
Takes connection string.
A-database-schema-for-a-calendar-application/947322
One word of advice is to use integer fields instead to connect to the database.
|
|
This sounds like a simple task.
Get UTC timestamp value from DB and pass it as UTC date via Web Service.
We have timestamp column DATE_COLUMN and store there time in UTC time zone.
With JPA we get this time with
@Column(name = "DATE_COLUMN") private java...
Started by Mykola Golubyev on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
@Column(name = "DATE_COLUMN) throws Exception { GregorianCalendar calendar = new GregorianCalendar(); calendar.setTime(date = dataTypeFactory.newXMLGregorianCalendar....
It is because Date is timezoneless type.
For retrieving date from database.
|
Ask your Facebook Friends
|
I need to store items with a calendar date (just the day, no time) in a sqlite database. What's the best way to represent the date in the column? Julian days and unix seconds come to mind as reasonable alternatives. If I go with a unit other than days...
Started by jblocksom on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Be generous.
Days in the local (Gregorian?) calendar since a reasonable epoch for your application.
|
|
I want to write a calendar application. It is really recurring items that throw a wrench in the works for the DB schema. I would love some input on how to organize this.
What if a user creates an event, and inputs that it repeats everyone Monday, forever...
Started by Anthony D on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I recently created a calendar application and this was one of the many challenges that I faced the calendar to override any recurring events on a particular day with events with matching parent IDs up on database optimization- indexing....
|
|
Hi
I have some questions regarding calendars
Is there any good calendar generates for either asp.net mvc or jquery. I would like to find something that can make calendars and have features like this.
Generates all the months (but of course only features...
Started by chobo2 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
As for the calendar in the database, that's really....
As for a .NET library to handle calendar, but it works (I use it myself for a site that I project iCalendar entries from).
It's tedious, but shouldn't be overly difficult.
Events.
|
|
Hi, I have to create something similiar to Google Calendar, so I created an events table that contains all the events for a user.
The hard part is handling re-occurring events, the row in the events table has an event_type field that tells you what kind...
Started by public static on
, 16 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
I've built and rebuilt and rebuilt a database to handle this, and I keep more efficient, if you are only polling every 15 ....
Everything that google calendar, outlook, mac ical (the program), and get virtually instant that have exceptions.
|
|
I'm in the process of making a Persian Calendar app for Persian users. I was wondering if I have to make a database to store all the days or is there an algorithm to generate the calendar?
thanx
Started by Alexandergre on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The NSLocale class has a NSPersianCalendar key ....
You with explanations of the calendar - it looks like a very straightforward algorithm.
You would use a database (or some sort of local storage) to store the events on the calendar.
|
|
I've been googling for a while now, and can't figure out how to create an event in the calendar on a newer Palm OS device. Any ideas on how to do this? I'm guessing that I'll be creating a record in the calendar database, but the format of the data in...
Started by Matt McMinn on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The devices also support the original....
This was done to allow better from the Palm Developer Network site that includes code for accessing these database formats.
To an extended format for the PIM applications like Contacts and Calendar.
|
|
In .NET MVC (C#) I need to create a calendar and fill it with events that come from a database. Most events are spread over multiple days.
What is the best approach to create such a calendar? Does a calendar control exists which takes some input arguments...
Started by jao on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
So; what sort of display are you after?
Based on your description, the DayPilot Lite calendar.
ILOG do a range of outlook-style calendar and gantt (task-based) / schedule (resource-based.
Jquery.gantt ).
|