Fixed jqgrid column width?

Is there a way to set a fixed width (max and min) of a jqgrid column?

I set the width property to colmodel, but if I resize the grid, the columns will adjust.

+7
source share
1 answer

You cannot define the maximum and minimum column widths, but you can make a fixed width that will not be changed. You can use the fixed option in colModel.

 fixed: true 

column properties (see documentation ).

+16
source

All Articles