I have a problem with RadScheduler. I need to validate double clicked time slot for availability before insert form opens. I using advanced insert form. Unfortunately its no OnAppointmentInserting or like event like this. I found OnClientAppointmentInserting event, and i can use it for validation, but i can not continue to insert form if validation is correct. Following the code i use for client side validation, but its no way to show insert form after validation:
function beforeInserting(s, e) {
var url = ;
var requestUrl = window.location.href.toLowerCase();
if (requestUrl.indexOf( /views/ ) != -1)
url = requestUrl.substring(0, requestUrl.indexOf( /views/ )) + /jobservice.svc/IsTimeAvailable?userId=0 ;
e.set_cancel(true);
var app = e.get_targetSlot();
$.ajax({
url: url,
accepts: application/json, text/javascript, */* ,
cache: false,
success: function (r) {
if (r != ) {
alert(r);
return;
}
else {
var scheduler = $find("<%= rdJobScheduler.ClientID %>");
var newApp = new Telerik.Web.UI.SchedulerAppointment();
newApp.set_start(app.get_startTime());
newApp.set_end(app.get_endTime());
// This is not working properly it just send OnInserted event to server
// scheduler.insertAppointment(newApp);
}
},
error: function (err, text, xhr) {
alert(text);
}
});
}