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
So i had an issue when draggin an item from a board to another, i configured some boards to open a modal so the user can input information. The issue was with the boards that become disabled if its part of the dragTo exceptions, althought the item never moves to the board, the modal would still pop up and open.
So i added this to the css class to make the board completly non interactible:
.kanban-board.disabled-board {
/* disable html element that cannot be dragged to */
pointer-events: none;
opacity: 0.3;
}
Just wanted to share in case someone has a similar problem
The text was updated successfully, but these errors were encountered:
So i had an issue when draggin an item from a board to another, i configured some boards to open a modal so the user can input information. The issue was with the boards that become disabled if its part of the dragTo exceptions, althought the item never moves to the board, the modal would still pop up and open.
So i added this to the css class to make the board completly non interactible:
.kanban-board.disabled-board {
/* disable html element that cannot be dragged to */
pointer-events: none;
opacity: 0.3;
}
Just wanted to share in case someone has a similar problem
The text was updated successfully, but these errors were encountered: