positive_closing

defines the 'saving' behaviour for the case, when the user edits the event's text directly in the event's box

boolean positive_closing;

Example

scheduler.config.positive_closing = true;
...
scheduler.init('scheduler_here',new Date(2013,05,11),"week");


Default value:

false
Applicable views:Day View, Week View, Units View
Details

A click on the edit button in the select bar opens a form for editing the event's text. Any outside click closes the form and cancels the changes. To prevent this and save any changes made in the form, set the option to true.

Back to top