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

[Solved] Calendar - Appointment button's text - Editing a recurring appointment

1 Answer 125 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
.
Top achievements
Rank 1
. asked on 15 Apr 2009, 06:29 PM
Hello, when double clicking on an existing recurring appointment in the calendar display is there a way to disable the 'Edit the series.' option selection when the 'Editing a recurring appointment' popup displays and force the user to select only the 'Edit only this occurence.' or bypass this popup and bring them to the 'Edit only this occurence.' edit form based on the appointment button's text that was just double clicked?

Thanks in advance.

1 Answer, 1 is accepted

Sort by
0
T. Tsonev
Telerik team
answered on 16 Apr 2009, 05:11 PM
Hello,

You can use the recurrenceActionDialogShowing event to override the dialog result:

 <script type="text/javascript">
   function OnClientRecurrenceActionDialogShowing(sender, eventArgs)
   {
       eventArgs.set_cancel(true);  
      
       //Edit this instance only:  
       eventArgs.set_editSeries(false);  
   }       
</script>
<telerik:RadScheduler
   ID="RadScheduler1"
   runat="server" 
   OnClientRecurrenceActionDialogShowing ="OnClientRecurrenceActionDialogShowing"
   DataSourceID="AppointmentsDS" />


I hope this helps.

Kind regards,
Tsvetomir Tsonev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Scheduler
Asked by
.
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Share this question
or