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

[Solved] Prevent appt resize or double-click

2 Answers 165 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Mark
Top achievements
Rank 1
Mark asked on 26 Jan 2008, 01:57 PM
How do I prevent appts from being able to be resized?  I also want to prevent double-click from opening the advanced form.

Thanks
Mark

2 Answers, 1 is accepted

Sort by
0
Accepted
Peter
Telerik team
answered on 28 Jan 2008, 03:02 PM
Hello Mark,

You can prevent appointments from being resized with the following code:
<script type="text/javascript">  
        function CancelResize(sender, eventArgs)  
        {         
           eventArgs.set_cancel(true);  
        }          
        </script> 
        <telerik:RadScheduler ID="RadScheduler1" runat="server" OnClientAppointmentResizeStart="CancelResize" ...> 
         

As for the second question, what should happen when an appointment is double clicked? Please, specify and we will find appropriate solution.


Best wishes,
Peter
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Mark
Top achievements
Rank 1
answered on 10 Feb 2008, 01:38 PM
Works great - thanks!
Tags
Scheduler
Asked by
Mark
Top achievements
Rank 1
Answers by
Peter
Telerik team
Mark
Top achievements
Rank 1
Share this question
or