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

Disable Instance editing of recurring appointment

1 Answer 54 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Matt MacKay
Top achievements
Rank 1
Matt MacKay asked on 14 Jan 2009, 05:26 AM
We want to allow users to create recurring appointments, however we would like to disable the ability to edit a single occurrence of that recurring appointment. Is this possible?

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 14 Jan 2009, 12:49 PM
Hi Matt,

Yes, this is possible with the following code:
 <script type="text/javascript">  
        function OnClientRecurrenceActionDialogShowing(sender, eventArgs) {  
           eventArgs.set_editSeries(true);  
            eventArgs.set_cancel(true);  
        }         
    </script>  
    <telerik:RadScheduler   
        ID="RadScheduler1" 
        runat="server"          
        OnClientRecurrenceActionDialogShowing="OnClientRecurrenceActionDialogShowing" 
               


Cheers,
Peter
the Telerik team

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