How to change select checkbox size in datatable?

image

Sometimes the checkbox is hard to select, I want to change the checkbox largger, the same size as the cell

I don’t know if it will work but try

style_cell={
       'width': 'inherit'
    }

This will require the checkbox to inherit the width of the parent which is the cell size

Thanks, this solution doesn’t work

Hey @leavor ,

Add this to your css file

input[type=checkbox] {
  transform: scale(2);
  margin: 10px;
  cursor: pointer;
}

out1
out2

Have a nice day.

Perfect, thank you very much!

1 Like