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

Disable edit

2 Answers 80 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Antoine
Top achievements
Rank 1
Antoine asked on 25 May 2009, 07:36 AM
hello,

I would like to do something with the Radscheduler. (great component, I love it :)
I would like to disable the edit function (with the form) but I want to allow to move appointments.
I tried allowEdit="false" but I can't move anything.

Did you have a solution ?

thanks.

2 Answers, 1 is accepted

Sort by
0
Paul
Telerik team
answered on 25 May 2009, 09:22 AM
Hello Antoine,

You can easily achieve your goal by hooking on the OnClientAppointmentEditing client event and cancel the event.

function onAppointmentEditing(sender, eventArgs)  
{  
    eventArgs.set_cancel(true);  

Best wishes,
Paul
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.
0
Antoine
Top achievements
Rank 1
answered on 25 May 2009, 04:34 PM
it works great :)
thanks a lot.
Tags
Scheduler
Asked by
Antoine
Top achievements
Rank 1
Answers by
Paul
Telerik team
Antoine
Top achievements
Rank 1
Share this question
or