Hey, I've made application and ajaxManager.ajaxRequest(argument) fires other places except OnClientAppointmentMoveEnd.
I've set alert that it is hitting the function, but it will not hit ajaxManager.ajaxRequest no matter what I put in the argument. My other functions hits ajaxRequest just fine, except for this one. can someone help me out?
OnClientAppointmentMoveEnd="ScheduleMoved"
I've set alert that it is hitting the function, but it will not hit ajaxManager.ajaxRequest no matter what I put in the argument. My other functions hits ajaxRequest just fine, except for this one. can someone help me out?
OnClientAppointmentMoveEnd="ScheduleMoved"
function ScheduleMoved(sender, eventArgs) |
{ |
var start = formatDate(eventArgs.get_newStartTime()); |
var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>"); |
var index = eventArgs.get_appointment().get_id(); |
ajaxManager.ajaxRequest(index.toString() + '+' + start.toString()); |
} |