Questions tagged [kendo-droptarget]

Kendo DropTarget is one of the drag-drop functions of the Kendo UI framework used to target the drop container of the element.

Kendo DropTarget is one of the drag-drop functions of the Kendo UI framework used to target the drop container of the element.

5 questions
0
votes
0 answers

Kendo Draggable and DropTarget not working

I'm trying to let the user drag list items to another unsorted list. I can "pick up" the list items, so the Draggable seems to work but when I release them above the DropTarget, they do not get added. I've added some events to check if both the…
0
votes
1 answer

Kendo Drag and Drop from source to destination and vice versa

I have implemented kendo drag drop functionality (drag from source and drop to destination), but now i want to apply the drag and drop in vice versa condition also (drag from destination and drop to source), i.e drag and drop from both. Is there any…
0
votes
1 answer

Is it possible to drag row outside kendo grid and sort within at same time?

I'm able to drag rows within the kendo ui grid. Seperately able to drag rows outside the grid to another html element. Is it possible to do both at same time? For within grid: Draggable within the grid: grid.table.kendoSortable({ …
roro
  • 193
  • 3
  • 16
0
votes
1 answer

Kendo UI: How to drag and drop multiple items from kendo ui grid to tree?

I am using kendo ui grid and tree in a cshtml page and want to drag and drop multiple rows from the grid to the tree. I am able to drag and drop a single row from the grid to the tree, but for multiple items, same approach does not work. Here are my…
0
votes
1 answer

Anyway to block certain droppable objects

For example if I have object1, object2 and object3 These can only be dropped in Zone1 Then I have object4, object5 and object6 These can only be dropped in Zone2 How could I configure this? Also I would like object7 to be allowed to drop in either…