How can I increase the width of the jqgrid multiselect checkbox?
Asked
Active
Viewed 4,004 times
2 Answers
1
Use the property multiselectWidth as:
multiselect: true,
multiselectWidth: 150,

Marcelo Lujan
- 2,142
- 1
- 17
- 12
0
Have you checked this link Checkbox size in HTML/CSS. According to this there is no way to set size of checkbox in all browsers.
But you may able to change width of checkboxes in webkit browsers hardcoded like this :
// Put this in jqGrid init to modify checkbox cell width
gridComplete: function() {
$("#yourid_cb").css("width","50px");
$("#yourid tbody tr").children().first("td").css("width","50px");
}
// override checkbox css
#yourid input[type="checkbox"] {
-webkit-transform: scale(2.0, 2.0)
}