v7.3.0

RecurrenceEditor

A class implementing a dialog to edit a RecurrenceModel. The class is used by the RecurringEvents feature, and you normally don't need to instantiate it.

Before showing the dialog, you need to use record to load a recurrence model data into the editor fields. For example:

// make the editor instance
const editor = new RecurrenceEditor();
// load recurrence model into it
editor.record = new RecurrenceModel({ frequency : "WEEKLY" });
// display the editor
editor.show();

See also

No results

Properties

Properties are getters/setters or publicly accessible variables on this class
type: recurrenceeditor

Source path

Scheduler/view/recurrence/RecurrenceEditor.js

Demo

examples/recurrence

Contents