Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by uvaraj24 on Aug 13, 2008 06:32
open dhtmlx forum
How to get all row id's from grid on drag-n-drop

Hi,

Please can any one help me How to get all row id's once drag-n-drop operation is done

thanks
uvaraj24
Answer posted by Support on Aug 14, 2008 01:38
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;
});