Hello,
I am using the RadWindow as Edit window for RadScheduler. I only want to edit the recurrence appointment as Series and I don't want to edit just one occurrence. So here is the question; how do I suppress the confirmation window before the edit RadWindow displays. Same case for delete action too.
Thanks in advance,
AM
I am using the RadWindow as Edit window for RadScheduler. I only want to edit the recurrence appointment as Series and I don't want to edit just one occurrence. So here is the question; how do I suppress the confirmation window before the edit RadWindow displays. Same case for delete action too.
Thanks in advance,
AM
function
AppointmentEditing(sender, eventArgs)
{
var apt = eventArgs.get_appointment();
var id = apt.ID;
if (apt._recurrenceParentID)
{
id = apt._recurrenceParentID;
}
window.radopenSendCalendarEdit.aspx?id=" + id, "AdvancedForm");
eventArgs.set_cancel(
true);
eventArgs.set_editSeries(
true);
currentApt =
null;
}