Is there way to output result from database query to display more than 35 columns and 25 rows?
1 Answers
Yes, it is doable but will make very long horizontal grid.
You can enable horizontal scrollbar in grid if required to constraint it within page.
You need to set following params:
$grid["autowidth"] = false;
$grid["shrinkToFit"] = false; // dont shrink to fit on screen
$grid["width"] = "600"; // defaults to 900
…
$g->set_options($grid);
Your Answer