update-column
Description
Fires when updating column data
Usage
"update-column": ({
id: string | number,
column?: object
}) => void;
Parameters
The callback of the update-column event can take an object with the following parameter:
id
- (required) the ID of the column to be updatedcolumn
- (optional) the new data object of the column. The full list of the column parameters can be found here
info
For handling the inner events you can use the Event Bus methods
Example
// create Kanban
const board = new kanban.Kanban("#root", {
columns,
cards
});
// subscribe on the "update-column" event
board.api.on("update-column", (obj) => {
console.log(obj);
});
Change log: The id and column parameters were added in v1.1