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

can disable the property of the Appointment move?

2 Answers 60 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Ruben
Top achievements
Rank 1
Ruben asked on 24 Dec 2008, 06:49 PM
Hi

I have a doubt, i want to disiable when i move the Appointment.

This can be done?

Greetings

2 Answers, 1 is accepted

Sort by
0
Brian Mains
Top achievements
Rank 1
answered on 29 Dec 2008, 08:48 PM
Disable what exactly, the appointment itself?
0
Peter
Telerik team
answered on 30 Dec 2008, 08:18 AM

If you want to disable moving the appointments through dragging, you can cancel the OnClientAppointmentMoveStart event:

 <script type="text/javascript">  
        function OnClientAppointmentMoveStart(sender, eventArgs)   
        {           
            eventArgs.set_cancel(true);  
        }  
    </script>    



Greetings,
Peter
the Telerik team

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