end-drag-card
Description
Triggered when a card dragging action ends
Usage
"end-drag-card": ({
id: string | number,
columnId: string | number,
rowId?: string | number,
before?: string | number,
source?: array
}) => void;
Parameters
The callback for the end-drag-card event receives an object with the following details:
id
- (required) the ID of the card that was draggedcolumnId
- (required) the ID of the column where the card is now locatedrowId
- (optional) the ID of the row where the card is placedbefore
- (optional) the ID of the card that follows the dragged card in the columnsource
- (optional) an array containing the IDs of the moved cards
info
To manage internal events, you can use the Event Bus methods
Example
// create Kanban
const board = new kanban.Kanban("#root", {
columns,
cards
});
// listen to the "end-drag-card" event
board.api.on("end-drag-card", (obj) => {
console.log(obj.columnId);
});
Change log: This event has been available since v1.4
Related sample: Kanban. Disabling drag and drop to specific columns