Hello, I used the $opt["height"] = "100"; & $opt["height"] = ""; in an attempt to resize the grid height but it doesn't seem to change at all, is the below code ok? I just need it to be the size of the first 20 rows so no scrollbars appear?
// set few params
$grid["caption"] = "Adviser Records";
$g->set_options($grid);
$opt["height"] = "600";
Thank you
Gary
2 Answers
It should be above set_options function and with $grid var.
$grid["caption"] = "Adviser Records";
$grid["height"] = "600";
$g->set_options($grid);
Your Answer