This is a migrated thread and some comments may be shown as answers.

Working with Recurrence Rules

1 Answer 58 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Rhys
Top achievements
Rank 1
Rhys asked on 16 Sep 2008, 02:24 AM
Hi,

I need some advice on how to accomplish the following.  I want to be able to display Appointments without being restricted to the Default Scheduler views.  I need to accomplish something like the following pseudo code...

ArrayList arr = new ArrayList();
foreach(Appointment on a given day) //need to be able to pass in date
    arr.Add(Appointment)
....
Then I can loop through all the Appointments and display information about them.

Thanks!
Rhys

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 16 Sep 2008, 11:33 AM
Hi Rhys,

You can use the GetAppointmentsInRange method:
 protected void Page_Load(object sender, EventArgs e)  
    {  
        RadScheduler1.Appointments.GetAppointmentsInRange(StartTime, EndTime )  
    } 


Regards,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Scheduler
Asked by
Rhys
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or