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

Dialog for editing recurrance.

1 Answer 25 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Mike
Top achievements
Rank 1
Mike asked on 31 Aug 2010, 03:29 PM
   I am using the advanced template to to view additional information for appointments.

Everything works great,  until I put somethign in thats 'recurrance'.

It prompts me asking whether to edit the single item,  or the entire series.

Is there a way I can get rid of the prompt?  Or force the response.

I dont care what the answer is,  And it works no matter which option you pick,  however,  for obvious reasons, my users will not want to see that dialog,  and it will confuse them.

I had hoped:

 

 

function OnClientAppointmentEditing(sender, eventArgs) {

 

eventArgs.get_editingRecurringSeries(

 

false)

 

}


But that is for setting the edit type,  and not the prompt.

Has anyone achived this or have any ideas?

1 Answer, 1 is accepted

Sort by
0
Mike
Top achievements
Rank 1
answered on 31 Aug 2010, 03:45 PM
It appears the answer is this though im not through tryin git.

 

 

function OnClientRecurrenceActionDialogShowing(sender, eventArgs) {

 

eventArgs.set_cancel(

 

true);

 

eventArgs.set_editSeries(

 

true);

 

}


Thanks,
M2
Tags
Scheduler
Asked by
Mike
Top achievements
Rank 1
Answers by
Mike
Top achievements
Rank 1
Share this question
or