I'm using FullCalendar 2.4. I have an application that has the following specific parameters:
Monthly View only.
allDay events only.
No reoccurring events.
No multiple day events.
I have it working the way that I want, except for one feature. When someone clicks on an event, I have it pop up the title/description of the event with buttons to Edit or Delete the event. If you click on Edit, it pops up the edit form, and so forth.
The one thing that I'd like to add is a button that says "Reorder". I want it to popup (modal like "Edit" is or possibly another option) a list of all the events for that day (the day the original single event was on). I'm using a jQuery sortable list so they can change the order of the events by dragging/dropping. There will be a save button to save the new order. I'm not wanting to popup the reorder list on dayClick because I have an Add Event form that pops up then.
I have it all worked out EXCEPT getting the list of events for that day to display and be accessible (so I can reference the event id for later saving to MySQL where the calendar is stored).
It's not a big database, so I don't mind a round trip for data if that's the best way. I'm just missing method and syntax.
I'm an experienced programmer but only been doing PHP for a few years and JQuery just this year.
I wouldn't mind doing the same thing with the Bubble that pops up when you click the +More link on a day...if I could figure out how to create a sortable list in it. I'm open to alternative ways of doing this if I'm missing a better way.
I've scoured Google and stackoverflow. I've found some similar situations but no cigar.
Thanks!