Skip to main content

history

Description

Optional. Controls whether the history of changes is tracked

info

The history property lets you turn history management on or off for Kanban. Setting it to false means the history can't be controlled via the API or toolbar controls.

tip

It's also possible to exclude certain operations from the Kanban history by using the $meta parameter with methods and events!

Usage

history?: boolean; 

Default config

history: true

Example

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

Change log: This property was introduced in version 1.3

Related articles: undo() and redo()