Hi, i have a grid with width ="750", but with several columns.
How do I adjust the column sizes configured with them?
I'm using "scroll =true" and columns are squeezed.
2 Answers
Try changing shrinkToFit to false.
According to docs ..
This option describes the type of calculation of the initial width of each column against with the width of the grid. If the value is true and the value in width option is set then: Every column width is scaled according to the defined option width.
$grid["shrinkToFit"] = true;
Your Answer