lightbox_recurring
defines the lightbox's behavior, when the user opens the lightbox to edit a recurring event
string lightbox_recurring;
Values
ask
before the lightbox is opened, a message box alerts and asks the user whether he will edit a certain instance or the entire recurring event.
instance
the lightbox is opened straight for editing a certain instance of the event.
series
the lightbox is opened straight for editing the entire recurring event.
Example
scheduler.config.lightbox_recurring = 'series';
...
scheduler.init('scheduler_here',new Date(2013,05,11),"week");
Default value:
'ask'
Details
The property requires the recurring extension to be enabled.
The parameter is available from version 3.5.
Back to top