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

suppress the confirmation window before the editing a recurring appointment

1 Answer 49 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
AM
Top achievements
Rank 1
AM asked on 23 Jul 2008, 05:46 PM
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

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;

}

1 Answer, 1 is accepted

Sort by
0
Simon
Telerik team
answered on 24 Jul 2008, 01:37 PM
Hello AM,

You can suppress the Dialog as shown in this Help article.

Regards,
Simon
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Scheduler
Asked by
AM
Top achievements
Rank 1
Answers by
Simon
Telerik team
Share this question
or