riktar / jkanban

Vanilla Javascript plugin for manage kanban boards
https://www.riccardotartaglia.it/jkanban/
Apache License 2.0
1.07k stars 297 forks source link

How to disable dragging feature for particular Board column in list of column #81

Closed bharathyathiraj closed 4 years ago

bharathyathiraj commented 4 years ago

Hi All,

I have added 3 boards for my kanban board, i want to disable drag feature for last board items, kindly let me know how to achieve this .

Please find attached picture for more detail of my question. kanbanBoard

riktar commented 4 years ago

Hi @bharathyathiraj. Try this when you define your object board:

{
        "id"    : "board-id",
        "title" : "Working"
        "dragTo": ["board-id"],
        /*... other props */
}

This will allow to drag&drop the item only in same board

bharathyathiraj commented 4 years ago

Yes this solution works....Thanks a lot @riktar

bharathyathiraj commented 4 years ago

Hi @bharathyathiraj. Try this when you define your object board:

{
        "id"    : "board-id",
        "title" : "Working"
        "dragTo": ["board-id"],
        /*... other props */
}

This will allow to drag&drop the item only in same board

This solution works...Thanks a lot @riktar

riktar commented 4 years ago

ok, close :+1: