You can define the function of the ondrop event (see link ) as shown below
jQuery("#table2").jqGrid('gridDnD', { ondrop: function (ev, ui, getdata) { // var acceptId = $(ui.draggable).attr("id"); // getdata is the data from $('#table1').jqGrid('getRowData',acceptId); // so you have full information about dropped row } });
inside the ondrop parameters you will find all the necessary information.
Oleg May 18 '10 at 15:00 2010-05-18 15:00
source share