I am creating a custom ITemplate for the AdvancedInsertTemplate by doing the following:
RadScheduler sched = new RadScheduler();
EventForm myEventForm = new EventForm();
sched.AdvancedInsertTemplate = (ITemplate) myEventForm;
In my ITemplate I have created several TextBoxes for user input as well as a Save Button for them to save the event.
When I double-click on my Scheduler it goes to the insert template as expected, but I am unsure of how to have my custom ITemplate close and return to the scheduler when I click Cancel or Save. Do I somehow link into the event handlers already supplied with the RadScheduler and if so, how?
Thanks.
RadScheduler sched = new RadScheduler();
EventForm myEventForm = new EventForm();
sched.AdvancedInsertTemplate = (ITemplate) myEventForm;
In my ITemplate I have created several TextBoxes for user input as well as a Save Button for them to save the event.
When I double-click on my Scheduler it goes to the insert template as expected, but I am unsure of how to have my custom ITemplate close and return to the scheduler when I click Cancel or Save. Do I somehow link into the event handlers already supplied with the RadScheduler and if so, how?
Thanks.