I\'m using the column reordering feature in jqGrid
$grid = jQuery(\"#list\").jqGrid({ sortable:true, ... });
Is there an event that fir
This works:
[EDITED]
$('.ui-jqgrid-hbox table', $('#' + gridId).parents('.ui-jqgrid-view')).bind("sortstop", function () { onGridColumnReordered(gridId) })
where you need to pass your gridId and create that onGridColumnReordered function of course.