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 autosave mode on or off

info

This setting lets you switch the Kanban autosave feature on or off. When editorAutoSave is set to false, the editor will show a "Save" button for manually saving changes.

Usage

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

Default config

editorAutoSave: true

Example

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