Drop on treeGrid

Hi Team,



I have scenario for drag and drop in which I want to select multiple rows from grid and drop into some specific tree node.In that case I want to collect all rowids of dragged rows and fire a normal/ajax request to server.

And we can drop elements to only some specific nodes.

How to do it?



Thanks



-Agile

And we can drop elements to only some specific nodes.
tree.attachEvent(“onDragIn”,function(sid,tid){
if (some_check(tid)) return false; //block drop for some elements
return true;
});

>>In that case I want to collect all rowids of dragged rows and fire a normal/ajax
tree.attachEvent(“onDrag”,function(sid,tid){
//will be called for each dragged item, so you will be able to abtain IDs of draged elements
});

dhtmlx.com/docs/products/dhtmlxG … rid_mandnd