Jqgrid Columns Reorder
I've tried to use remapColumns: grid.remapColumns(newOrder, false, false); but got a strange issue - column headers was reordered, but column infos stayed untouched. How can solve
Solution 1:
The second parameter of remapColumns
should be true
if you want to update grid content. Typical usage of remapColumns
is grid.jqGrid("remapColumns", newOrder, true, true);
(or grid.remapColumns(newOrder, true);
).
Post a Comment for "Jqgrid Columns Reorder"