addCard() | Inserts a new card into the Kanban board |
addColumn() | Inserts a new column into the Kanban board |
addComment() | Inserts a new comment into the specified card using its ID. |
addLink() | Inserts a new link into the Kanban board. |
addRow() | Inserts a new row into the Kanban board |
deleteCard() | Deletes a specific card from the Kanban's datastore. |
deleteColumn() | Deletes a specified column from the Kanban datastore. |
deleteComment() | Remove a comment from a card using its ID |
deleteLink() | Deletes the specified link from the Kanban datastore. |
deleteRow() | Deletes the specified row from the Kanban datastore. |
destructor() | Clears all HTML elements of the Kanban board and removes all associated event handlers. |
duplicateCard() | Creates a duplicate of a card based on the given ID |
getAreaCards() | Retrieves an array containing data objects for all cards within the specified column (and row). |
getCard() | Retrieves the data object of a card using its specified ID |
getSelection() | Retrieves an array containing the ID(s) of the selected card(s) |
moveCard() | Shifts a card to a specified column (and row). |
moveColumn() | Shifts a column to a new position within the board. |
moveRow() | Shifts a row to a new spot within the board. |
parse() | Loads data into the Kanban board |
redo() | Re-executes the action that was undone by the undo method |
scroll() | Moves the Kanban view to a specific element |
selectCard() | Highlights a card based on the given ID. |
serialize() | Converts the Kanban data into a JSON format. |
setConfig() | Updates the Kanban with new configuration settings |
setEdit() | Switches the Kanban card editor on or off |
setLocale() | Sets a new locale for the Kanban component |
setSearch() | Finds cards based on the given search criteria |
setSort() | Sorts cards based on the specified criteria |
setTheme() | Dynamically applies a new theme to the Kanban board (reinitializing it). |
undo() | Reverts the last operation in Kanban |
unselectCard() | Deselects the card(s) identified by their ID. |
updateCard() | Updates a card's data by its ID |
updateColumn() | Modifies the data of a column using its ID |
updateComment() | Modify a card comment by specifying its ID |
updateRow() | Modifies the data of a row based on its ID. |