My grid has many columns.
When I want to scroll down I have to move horizontal scrollbar to the right.
How can I add another vertical scrollbar on the left of the grid.
1 Answers
You can make fixed with grid … after that the horizontal scrollbar will come inside the grid, and will show both horizontal/vertical at same time.
$opt["autowidth"] = false;
$opt["shrinkToFit"] = false;
$opt["width"] = "600"; // <———– change to your desired width
…
$g->set_options($opt);
Your Answer