You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| draggable | boolean | Makes all cards in the lanes draggable. Default: false |
76
-
| editable | boolean | Makes the entire board editable. Allow cards to be added or deleted Default: false |
77
-
| handleDragStart | function | Callback function triggered when card drag is started: `handleDragStart(cardId, laneId)`|
78
-
| handleDragEnd | function | Callback function triggered when card drag ends: `handleDragEnd(cardId, sourceLaneId, targetLaneId, position)`|
79
-
| onLaneScroll | function | Called when a lane is scrolled to the end: `onLaneScroll(requestedPage, laneId)`|
80
-
| onCardClick | function | Called when a card is clicked: `onCardClick(cardId, metadata, laneId) `|
81
-
| onCardAdd | function | Called when a new card is added: `onCardAdd(card, laneId) `|
82
-
| addCardLink | node | Pass custom element to replace the `Add Card` link at the end of the lane (when board is editable) |
83
-
| newCardTemplate | node | Pass a custom new card template to add new cards to a lane (when board is editable) |
84
-
| onCardDelete | function | Called when a card is deleted: `onCardDelete(cardId, laneId) `|
85
-
| onLaneClick | function | Called when a lane is clicked: `onLaneClick(laneId) `. Card clicks are not propagated to lane click event |
86
-
| laneSortFunction | function | Used to specify the logic to sort cards on a lane: `laneSortFunction(card1, card2)`|
87
-
| eventBusHandle | function | This is a special function that providers a publishHook to pass new events to the board. See details in Publish Events section |
88
-
| onDataChange | function | Called everytime the data changes due to user interaction or event bus: `onDataChange(newData)`|
| draggable | boolean | Makes all cards in the lanes draggable. Default: false |
76
+
| editable | boolean | Makes the entire board editable. Allow cards to be added or deleted Default: false |
77
+
| handleDragStart | function | Callback function triggered when card drag is started: `handleDragStart(cardId, laneId)` |
78
+
| handleDragEnd | function | Callback function triggered when card drag ends: `handleDragEnd(cardId, sourceLaneId, targetLaneId, position)` |
79
+
| onLaneScroll | function | Called when a lane is scrolled to the end: `onLaneScroll(requestedPage, laneId)` |
80
+
| onCardClick | function | Called when a card is clicked: `onCardClick(cardId, metadata, laneId) ` |
81
+
| onCardAdd | function | Called when a new card is added: `onCardAdd(card, laneId) ` |
82
+
| addCardLink | node | Pass custom element to replace the `Add Card` link at the end of the lane (when board is editable) |
83
+
| newCardTemplate | node | Pass a custom new card template to add new cards to a lane (when board is editable) |
84
+
| hideCardDeleteIcon | boolean | Disable showing the delete icon to the top right corner of the card (when board is editable) |
85
+
| onCardDelete | function | Called when a card is deleted: `onCardDelete(cardId, laneId) ` |
86
+
| onLaneClick | function | Called when a lane is clicked: `onLaneClick(laneId) `. Card clicks are not propagated to lane click event |
87
+
| laneSortFunction | function | Used to specify the logic to sort cards on a lane: `laneSortFunction(card1, card2)` |
88
+
| eventBusHandle | function | This is a special function that providers a publishHook to pass new events to the board. See details in Publish Events section |
89
+
| onDataChange | function | Called everytime the data changes due to user interaction or event bus: `onDataChange(newData)` |
0 commit comments