react-trello
react-trello copied to clipboard
Disable Lane dragging option for PARTICULAR LANE based on Id not the entire lane
I need to disable lane dragging for PARTICULAR LANE, not for the entire lane, while still allowing for cards to be dragged between lanes.
We can add an option like draggable: false while creating data for each lane for eg: { "lanes": [ { "id": "PLANNED", "title": "Planned Tasks", "label": "20/70", "draggeble":false, "style": { "width": 280 }, ]
Or like on handleLaneDragStart(laneId) we should be able to return false like handleDragStart(cardId, laneId) to cancel the drop.
Are you asking or passing on information?