Hi Peter,
I use v 2.7
scenario:
In my project, i have the following options:
can pin/unpin column
can hide/show column
can save/load the grid state
I can save the state with some of the columns are pinned and some of the column are hidden.
But when i load the saved state, it displays all the pinned columns (can see the background color changed).
but when i move the horizontal scroll bar, the pinned columns also move.
I had the same problem when i pinned the column using
$(‘#jqxgrid’).jqxGrid(‘pincolumn’, columndatafield);
Later on i fixed this by adding
$(‘#jqxgrid’).jqxGrid(‘render’);
But when i add the same command after load the state –
$(“#jqxgrid”).jqxGrid(‘loadstate’, gridstate);
$(‘#jqxgrid’).jqxGrid(‘render’);
it does not show the pinned columns at all.
thanks for your help