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

EditAppointmentDialog disable

1 Answer 40 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
bledar
Top achievements
Rank 1
bledar asked on 21 Apr 2015, 09:51 AM

Hi,

if i doubleclick on the appointmen cell on the Scheduler for Winform UI the EditAppointmentDialog is shown.

Question:

How can i disable the  EditAppointmentDialog , it is possible after a DoubleClick not to popup this EditAppointmentDialog??

 

Regards,

Bledar

1 Answer, 1 is accepted

Sort by
0
Accepted
Dess | Tech Support Engineer, Principal
Telerik team
answered on 21 Apr 2015, 10:49 AM
Hello Bledar,

Thank you for writing.

In order to disable the edit dialog, you should cancel the AppointmentEditDialogShowing event:
void radScheduler1_AppointmentEditDialogShowing(object sender, AppointmentEditDialogShowingEventArgs e)
{
   e.Cancel=true;
}

I hope this information helps. Should you have further questions, I would be glad to help.
 
Regards,
Dess
Telerik
 

See What's Next in App Development. Register for TelerikNEXT.

 
Tags
Scheduler and Reminder
Asked by
bledar
Top achievements
Rank 1
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or