editorAutoSave
danger
Starting from version 1.3, the editorAutoSave
property is deprecated. To manage the "autosave" mode, use the editor
property!
Description
Optional. Enables/disables an autosave mode
info
Using this parameter, you can enable/disable an autosave mode of Kanban. If you set the editorAutoSave property to false, the editor will display the "Save" button to save edited data
Usage
editorAutoSave?: boolean; // (true by default)
Default config
editorAutoSave: true
Example
new kanban.Kanban("#root", {
columns,
cards,
editorAutoSave: false, // disable autosaving
// other parameters
});