Hello,
as the KB of the scheduler and the Client-side objects API says the scheduler.get_appointments() method returns the SchedulerAppointmentCollection only of the current viewed appointments on current scheduler selected view.
(from here: RadScheduler - clientside obj )
As my implementation requires the control on WHOLE collection, how can i obtain such thing?
example: i'm on current day X and i need to get appointments in range (start, end) on day X+3. I got range of hours start and end of the day X+3. If being on selected view "day" of day X and I use scripts like this:
var result = myScheduler.get_appointments().getAppointmentsInRange(start, end);
IS WRONG, because myScheduler.get_appointments() gets the SchedulerAppointmentCollection of the DAY X (not the X+3), of course because the selected view is setted on day X and the method returns this.
the functionality of this method is correct, working as it supposed to do. But I need the correct SchedulerAppointmentCollection for the day X+3 (different from the selected one on current selected view "day".
Best regards, Egor.
as the KB of the scheduler and the Client-side objects API says the scheduler.get_appointments() method returns the SchedulerAppointmentCollection only of the current viewed appointments on current scheduler selected view.
(from here: RadScheduler - clientside obj )
As my implementation requires the control on WHOLE collection, how can i obtain such thing?
example: i'm on current day X and i need to get appointments in range (start, end) on day X+3. I got range of hours start and end of the day X+3. If being on selected view "day" of day X and I use scripts like this:
var result = myScheduler.get_appointments().getAppointmentsInRange(start, end);
IS WRONG, because myScheduler.get_appointments() gets the SchedulerAppointmentCollection of the DAY X (not the X+3), of course because the selected view is setted on day X and the method returns this.
the functionality of this method is correct, working as it supposed to do. But I need the correct SchedulerAppointmentCollection for the day X+3 (different from the selected one on current selected view "day".
Best regards, Egor.