I want to use the sortableRows jqGrid property. How to determine when a row has been moved. I studied the documentation and looked for examples, but did not find much. I really believe this is something like
jQuery("#grid").sortableRows({connectWith:'#gird',
ondrop: function(){ alert("row moved") }});
but that will not work. I can move lines, but don't seem to catch this event. Something is wrong with my syntax or my approach in general.
Basically, I need to know that the lines have been rearranged, so I can be sure that they will be saved with their new order.
thank
source
share