editor
Description
Optional. An object of settings for configuring the Kanban editor
Usage
editor?: {
autoSave?: boolean,
debounce?: number
};
Parameters
autoSave
- (optional) enables/disables an autosave mode of editordebounce
- (optional) time of delay of autosaving data (works with the autoSave: true parameter only)
Default config
editor: {
autoSave: true,
debounce: 100
}
Example
new kanban.Kanban("#root", {
columns,
cards,
editor: {
autoSave: true,
debounce: 2000
}
// other parameters
});
Change log: The property was added in v1.3