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
I'm trying to create a kanban board which will use two ng-repeats(nested). One will be for the column, and second will be for the items inside each of these columns.
These are the three kinds of operations(drag and drop) that I am going to do.
Item to item.
Item to heading. //Not important for my problem here.
Item to column.
ISSUE : When I do the Operation 1 from above, first, Operation 3 is triggered. Only then the Operation 1 is triggered.
In other words, the drop gets triggered for the parent div first, and only then it is called for the child div.
QUESTION : Is it possible to disable this scenario? I mean, I need only the item to item(child to child) operation to happen. When this is happening, the item to column(child to parent) operation is irrelevant.
P.S : I went through #223 , but that didn't solve my problem. Any help will be appreciated. Thanks in advance.
I'm trying to create a kanban board which will use two ng-repeats(nested). One will be for the column, and second will be for the items inside each of these columns.
These are the three kinds of operations(drag and drop) that I am going to do.
ISSUE : When I do the Operation 1 from above, first, Operation 3 is triggered. Only then the Operation 1 is triggered.
In other words, the drop gets triggered for the parent div first, and only then it is called for the child div.
QUESTION : Is it possible to disable this scenario? I mean, I need only the item to item(child to child) operation to happen. When this is happening, the item to column(child to parent) operation is irrelevant.
P.S : I went through #223 , but that didn't solve my problem. Any help will be appreciated. Thanks in advance.
The text was updated successfully, but these errors were encountered: