Hello yougotnet,
You could bind to appointmentClick
event to get the current (old) DateTime and with appointmentChange
you will receive the updated (new) DateTime.
Please, take a look at this approach below:
$("#scheduler").on('appointmentChange', function (event) {
var args = event.args;
var appointment = args.appointment;
var fromDate = appointment.from;
var fromDateString = fromDate.day() + '/' + fromDate.month() + '/' + fromDate.year();
console.log('New Date: ', fromDateString);
});
You could use the same approach to get the date before chages.
Best Regards,
Hristo Hristov
jQWidgets team
http://www.jqwidgets.com