moveColumn()
Description
Moves a column to the new position
Usage
moveColumn({
id: string | number,
before: string | number
}): void;
Parameters
id
- (required) the ID of the column to be movedbefore
- (required) the ID of the column, the moved one will be placed before it
Example
// create Kanban
const board = new kanban.Kanban("#root", {
columns,
cards
});
// move the "backlog" column and place it before the "done" one
board.moveColumn({
id: "backlog",
before: "done"
});
Change log: The method was added in v1.1