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

open appointment affter cluck on save button

1 Answer 34 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
lea ginsberger
Top achievements
Rank 1
lea ginsberger asked on 22 Jul 2010, 07:33 AM

After I click on save button , I want to leave the appointment form open.

If I writing e.cancel , the appointment form is still open , but all the data completed , clear.
 (like a new appointment )

 

How can I leave open appointment with the selected data?

 

1 Answer, 1 is accepted

Sort by
0
Veronica
Telerik team
answered on 27 Jul 2010, 02:16 PM
Hi lea ginsberger,

Which event you are cancelling? I subcribed to the AppointmentInsert event and cancelled it:

protected void RadScheduler1_AppointmentInsert(object sender, SchedulerCancelEventArgs e)
   {
        e.Cancel = true;
   }

As result the AdvancedForm stays opened and data is not cleared.

Please take a look at the attached project and let me know if you have more questions.

Regards,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Scheduler
Asked by
lea ginsberger
Top achievements
Rank 1
Answers by
Veronica
Telerik team
Share this question
or