Good Day
I have used php grid with bootstrap 4. it works ok except when I enable
$grid[“multiselect”] = true; //Allow you to multi-select through checkboxes
$grid[“multiboxonly”] = true;
the checkbox column is resize to be around 200px.
image link https://imgur.com/TuYjLLD
can you please help me
1 Answers
Hello,
You can try setting multiselectWidth as well.
$grid["multiselect"] = true; $grid["multiselectWidth"] = 50;
Your Answer