deleteRow()
Description
Deletes the specified row from the Kanban datastore.
Usage
deleteRow({ id: string | number }): void;
Parameters
id
- (required) the identifier of the row that should be removed
Example
// create Kanban
const board = new kanban.Kanban("#root", {
columns,
cards
});
// delete a row using its id
board.deleteRow({ id: "feature" });