nats0128
nats0128

Reputation: 509

Update MySQL Database with information from drag-and-drop event

I am using this template to build a website for a church.

The church wants a really good calendar entry point to add events.

With the calendar on the current template it's nice and simple and you can drag the events onto the corresponding date. What I need is a way to get the date where the event has been dragged onto so I can update the MySQL database.

Here is the link to the direct calendar http://usman.it/themes/charisma/calendar.html

The code for showing the calendar is just

<div id="calendar"></div>

Upvotes: 0

Views: 2164

Answers (3)

Prabhuram
Prabhuram

Reputation: 1268

Basically the calender is loaded through javascript.

If you take a look at the charisma.js inside the themes folder you should be able to see that the calendar will be invoked for example as follows,

$('#calendar').fullCalendar({ << some  options here >> });

you can go through the documentation for the full calendar at the following site :

http://arshaw.com/fullcalendar/

Upvotes: 1

Ruben Verschueren
Ruben Verschueren

Reputation: 842

Since you're usig draggables (jquery), you can hook into their events to collect the data: http://jqueryui.com/draggable/#events

check out the api documentation for the possiblities: http://api.jqueryui.com/draggable/

Upvotes: 0

Marco Veenendaal
Marco Veenendaal

Reputation: 186

I guess you want to use datepicker, see: http://jqueryui.com/datepicker/#inline

Upvotes: 0

Related Questions