Hi Jeff357,
Thank you for your question.
There is a protected method in
RadScheduler called
ShowAppointmentEditDialog which opens a specified appointment in the
EditAppointmentDialog. You can either inherit from RadScheduler and expose a public method to call the
ShowAppointmentEditDialog method or you can use reflection to call it directly. It accepts as arguments the appointment to be opened and a boolean value indicating whether the recurrence editor should also be opened. For you convenience, this method will be exposed as public in the next official release.
As to your question about the case insensitive search, which you asked in another thread, you can use the
IndexOf method instead of the
Contains method to check if a given string is contained within another. The following code snippet implements both of your requirements:
I hope you find this helpful. Feel free to ask if you have any additional questions.
Kind regards,
Ivan Todorov
the Telerik team