hi,
How to fix the column width and force the grid to show the horizontal bar? I tested below setting but it doesn't help.
$col["fixed"]=true;
$col["width"]="20";
$opt["shrinkToFit"] = false; (or true)
my verison: v1.6.4
Any clue?
Thanks.
KB
2 Answers
You also need to set grid width, and all column sum width should be greater than 500.
$grid["width"] = "550";
$grid["shrinkToFit"] = false;
…
$g->set_options($grid);
Your Answer