0

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>
Muhammad Usman
  • 12,439
  • 6
  • 36
  • 59
nats0128
  • 509
  • 5
  • 18

3 Answers3

1

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/

Prabhuram
  • 1,268
  • 9
  • 15
0

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

Marco Veenendaal
  • 186
  • 1
  • 12
  • No - i want to get the details of where the date has been placed - http://usman.it/themes/charisma/calendar.html – nats0128 Jun 14 '13 at 09:21
0

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/

Ruben Verschueren
  • 822
  • 13
  • 28