Skip to main content

editorAutoSave

danger

Starting with version 1.3, the editorAutoSave property is deprecated. To control the "autosave" mode, please use the editor property instead.

Description

Optional. Turns the autosave mode on or off

info

This setting lets you enable or disable autosave in the Kanban editor. When the editorAutoSave property is set to false, the editor will show a "Save" button to manually save changes.

Usage

editorAutoSave?: boolean; // (true by default)

Default config

editorAutoSave: true

Example

new kanban.Kanban("#root", {
columns,
cards,
editorAutoSave: false, // disable autosave
// other parameters
});