Fixed width of jqgrid column

jqgrid

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

I've set the width property in the colmodel, but if I resize the grid the columns are adjusting.

Best Answer

One can't define max and min width of the column, but one can make it have a fixed width which will be not changed. You can use the fixed option in the colModel.

fixed: true

property of the column (see the documentation).

Related Topic