Project Description:
I am looking to change FullCalendar to add/delete sql server data when events are removed or dropped from Calendar.
Events should only be included by dragging and dropping.
Able to click event on calendar, get Delete confirmation Dialog box 'ok' or 'cancel'. then Delete from database.
Fill draggable events area of FullCalendar from a server table [eventlist]([title] [varchar](50) NULL)
Should indicates events only related to particular users,
//if user id of that user is stored in session as Session ["userid"]
//the event table also have an extra field named 'user_id' to mark the event for that specific user
//then you will modify the SQL as:
//SELECT event_id, description, title, event_start, event_end FROM event where user_id=@user_id AND event_start>=@start AND event_end
Skills required are ASP, Javascript, C# Programming, jQuery / Prototype, SQL