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

[Solved] how to enable recurrence rule

1 Answer 113 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Nagesh Mynedi
Top achievements
Rank 1
Nagesh Mynedi asked on 19 Jan 2010, 11:41 AM
In my application i am fixing appointment for all Mondays in Jan using recurrence rules if i make allow edit is false for one Monday that rules is applying to reaming Mondays but according to my requirement the allow edit is false property is only applicable to one monday how can i achive this

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 19 Jan 2010, 01:23 PM
Hi Nagesh,

You can handle AppointmentCreated to set the AllowEdit property based on your custom condition. For example:

protected void RadScheduler1_AppointmentCreated(object sender, AppointmentCreatedEventArgs e)
   {
       if (e.Appointment.Start.Day != 4)
           e.Appointment.AllowEdit = false;
   }


Regards,
Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Scheduler
Asked by
Nagesh Mynedi
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or