Hi to all,
in my page there is the RadCalendar and a grid.
I need to show in advanced edit form a ticket chosen from the grid.
How can I do that?
I tried to write this:
in my page there is the RadCalendar and a grid.
I need to show in advanced edit form a ticket chosen from the grid.
How can I do that?
I tried to write this:
Appointment app = new Appointment();
app.ID = id;
app.Start = start;
app.End = end
RadScheduler1.ShowAdvancedEditForm(app,
false);
but then, we it enters in the advanced edit form, and I for instance a change a date, the Save button does not work (no event, it remains in the form, without entering the
RadScheduler1_AppointmentUpdate).
Many thanks in advance for Your help.
Sergio