I\'m using the column reordering feature in jqGrid
$grid = jQuery(\"#list\").jqGrid({
sortable:true,
...
});
Is there an event that fir
Found after reading Mr W's reply and experimenting a bit, there's a better way of doing things:
$("#gbox_" + gridid).bind("sortstop", function(){
// you can even get the current permutation!
// Yes, it looks like you may be grabbing the remapColumns function.
// You're not, you get an array of integers back.
grid.jqGrid("getGridParam", "remapColumns");
})
Enjoy!