I want to align: center the "select all" checkbox in the header. It is the first cell in the header of jqgrid.
I tried:
#configDiv th input[type="checkbox"] {
margin: 0 auto !important;
}
and
grid.find('th input[type="checkbox"]').css("align", "center");
Those didn't work!
Any idea?