I am a newbia with RadScheduler control. I would like to add another check event for example prompting user a message before showing the Edit Appointment Dialog Form, when you double click to add new appointment. Please help me. Thanks.
3 Answers, 1 is accepted
0
Ivan Todorov
Telerik team
answered on 13 Apr 2012, 12:56 PM
Hi Dave,
Thank you for writing.
To achieve this, you can use the AppointmentEditDialogShowing event. The following code snippet demonstrates this:
this.radScheduler1.AppointmentEditDialogShowing += new EventHandler<AppointmentEditDialogShowingEventArgs>(radScheduler1_AppointmentEditDialogShowing);
Nice done. Thank you very much sir. I have another questions: I have another table in the database that store employee information(id, name and group). now I would to bind it into 2 dropdownbox one for the name and one for group and put them in Edit Appointment Dialog. How do about to accomplish this? Kindly advise and help me please. Thanks,
0
Ivan Todorov
Telerik team
answered on 18 Apr 2012, 02:46 PM
Hi Dave,
The "Adding a custom field to the EditAppointmentDialog" help article describes how to achieve similar scenario. Also, there is an example in our Demo application, which you might find useful. It is called "Custom Appointment Dialog" and it is located under the Scheduler group.
Please let me know if you need further assistance with this case.