Search code examples
csscheckboxjqgridsize

JQGRID - Make checkboxes fit row height


In JQGRID, I increased the row size of my table by doing this in the CSS file:

.ui-jqgrid tr.jqgrow td input { padding: 0px; height: 60px;}

Since I have multiselect: true, how can I make the checkboxes to auto-fit the row size on all the grid (including header)?

I tried this answer which is working for the header but not able to reproduce it for the rest of the grid: How to increase jqgrid header checkbox size

So far they are way to small...

Thanks


Solution

  • Thanks to jcarrera's answer, I finally made it by doing this with css (working with all browsers so far) :

    input[type="checkbox"] {
            -webkit-transform: scale(2, 2);
        }