Freeze Rownum Column In JQGrid
Solution 1:
I find your suggestion interesting. jqGrid don't allows to make "rn"
(created in case of the usage of rownumbers: true
option) or "cb"
(created in case of the usage of multiselect: true
option) columns frozen. As you probably know I develop my fork of jqGrid since last 4 month under the name free jqGrid (see readme and wiki for more details). So I just made the corresponding changes in the code of setFrozenColumns
in my fork.
The demo demonstrates the feature. The columns "rn"
and "cb"
have frozen: true
column by default. So one need just call setFrozenColumns
method to make there frozen:
An additional problem with frozen columns is the position and the height of individual rows if not all rows have the same height. For example inline editing can increase the height of row. I fixed the problem too.
The next demo uses frozen column with formatter: "action"
and the "rownumber" column ("rn" column). One can see that the height of frozen rows will be automatically adjusted on the start or the end of inline editing:
So you need just download the latest code of free jqGrid from GitHub to solve your problem.
Post a Comment for "Freeze Rownum Column In JQGrid"