Is it possible to set the height of a grid while having the width set to 'autowidth'? Something like set_dimension('autowidth', 300); This would be useful when using master-detail grids.
Thanks,
Cliff
2 Answers
The height of the grid can be set as percentage or any valid measured value, in set_options() function.
$opt["height"] = "400";
You can also leave it blank to set height based on records.
$opt["height"] = "";
Your Answer