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

how to disable appoinmentEditDialog

1 Answer 61 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Ming Zhao
Top achievements
Rank 1
Ming Zhao asked on 19 Jan 2010, 07:58 PM
We only want to use scheduler to display a list appoinments without adding new appoinment and editing existing appoinment.

How can we disable appoinmentEditDialog so that when we click the scheduler, no appoinmentEditDialog pops up?

1 Answer, 1 is accepted

Sort by
0
Boyko Markov
Telerik team
answered on 21 Jan 2010, 12:43 PM
Hi Ming Zhao,

You can subscribe to AppointmentEditDialogShowing event:

this.radScheduler.AppointmentEditDialogShowing +=new EventHandler<AppointmentEditDialogShowingEventArgs>(radScheduler_AppointmentEditDialogShowing);


Then you need to do the following in the event handler:

void radScheduler_AppointmentEditDialogShowing(object sender, AppointmentEditDialogShowingEventArgs e)
{
e.AppointmentEditDialog = null;
}

Please feel free to contact us, if you have additional questions.

Regards,

Boyko Markov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Scheduler and Reminder
Asked by
Ming Zhao
Top achievements
Rank 1
Answers by
Boyko Markov
Telerik team
Share this question
or