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

Disable double-click in Calendar?

1 Answer 138 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Dave
Top achievements
Rank 1
Dave asked on 16 Nov 2011, 06:39 PM
Is there a way to disable the editor form that appears when a user double clicks an appointment in the RadCalendar?  We have a separate mechanism for editing this data and are using the Calendar control as a read-only view.  I've tried disabling editing, but it still pops up the form when I double-click an appointment.  Thanks!

Dave

1 Answer, 1 is accepted

Sort by
0
Jayesh Goyani
Top achievements
Rank 2
answered on 17 Nov 2011, 10:03 AM
Hello,

<telerik:RadScheduler ID="RadScheduler1" runat="server"
        OnClientAppointmentEditing="ClientAppointmentEditing">
   </telerik:RadScheduler>
function ClientAppointmentEditing(sender, eventArgs) {
             eventArgs._cancel = true;
         }



Thanks,
Jayesh Goyani
Tags
Calendar
Asked by
Dave
Top achievements
Rank 1
Answers by
Jayesh Goyani
Top achievements
Rank 2
Share this question
or