Hi
I'm using the advanced edit and advanced insert form, but I want to add one more form (not an inline form).
Is this possible?
It will be triggered from a contextmenu.
- set a flag (using viewstate or session) to keep track if the form was opened from a context menu
-set the ID of the right-clicked appointment using the EditedAppointmentID property:
protectedobjectEditedAppointmentID
{
get{ returnViewState["EditedAppointmentID"]; }
set{ ViewState["EditedAppointmentID"] = value; }
}
- open the advanced form explicitly using the ShowAdvancedEditForm() method: RadScheduler1.ShowAdvancedEditForm(appointmentToEdit);
Then in FormCreating check the flag you set above and if it shows that the form is opened via the context menu proceed as in the example:
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.