I\'m using the column reordering feature in jqGrid
$grid = jQuery(\"#list\").jqGrid({ sortable:true, ... });
Is there an event that fir
Would not this be much easier. Just using the ui element to map all the rows and finding their position by using sortable index() function ?
stop: function(e, ui) { console.log($.map($(this).find('tr.ui-widget-content'), function(el) { return el.id + ' = ' + $(el).index(); })); }