Scott Fell
asked on
Jquery FullCalendar get time in agenda
I would like to get a call back of the date and time when clicking on the week or day view.
http://arshaw.com/js/fullc alendar-1. 5.4/demos/ external-d ragging.ht ml
I have it figured out how to get the date
http://arshaw.com/js/fullc
I have it figured out how to get the date
dayClick: function (date, allDay, jsEvent, view) {
var parsedDate = $.fullCalendar.parseDate(date);
alert($.fullCalendar.formatDate(parsedDate, 'MM/dd/yyyy'));
},
If there is an event, I can get the info from that. However, I want to click on an empty time slot and get an alert of the date and time.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.