I'm currently using web service binding and have an advanced insert/update form. I would like to validate 'client side' if newly added appointment resources conflict with existing appointment resources before proceeding with the insert. I have this working, however NOT for recurring appointments,
The problem I have is that to query appointments in the range to be booked. I am using
scheduler.get_appointments().getAppointmentsInRange(start, end);
but this only returns a collection of all currently loaded appointments.
http://www.telerik.com/help/aspnet-ajax/scheduler-object.html. As the appointment being added could run beyond the currently loaded appointments this means that I cannot rely on the above method.
Is there a method for getting a list of appointments from the server without going through the scheduler so that I can query on an unrestricted range? Or is there a suggested technique for doing this?
The problem I have is that to query appointments in the range to be booked. I am using
scheduler.get_appointments().getAppointmentsInRange(start, end);
but this only returns a collection of all currently loaded appointments.
http://www.telerik.com/help/aspnet-ajax/scheduler-object.html. As the appointment being added could run beyond the currently loaded appointments this means that I cannot rely on the above method.
Is there a method for getting a list of appointments from the server without going through the scheduler so that I can query on an unrestricted range? Or is there a suggested technique for doing this?