Hi,
Please can any one help me How to get all row id’s once drag-n-drop operation is done
thanks
uvaraj24
If you need ID’s of all row included in d-n-d operation you can use
grid.attachEvents(“onDrop”,function(sid,tid){
alert("draged row ids : "sid);
return true;
});