I have a jqgrid and I can reorder my columns with this option in my JQGrid
jQuery(\"#list\").jqGrid({ sortable: true, ...
You can set sortable for each column in the colModel
sortable
colModel
colModel: [{ name: 'name', index: 'name', sortable: true },...
Checkout the documentation it's pretty helpful.