Using: http://stackoverflow.com/questions/2382879/using-sortablerows-and-know-when-rows-have-been-moved I have been able to call an alert after the modification of my row order.
How would I send this data to PHP/ call the editurl passing this data, similar to when adding or editing rows the editurl receives a $_POST['oper'] variable?
Currently have:
jQuery("#images_list").jqGrid('sortableRows',
options = { update : function(e,ui){alert("hi");} });