Closed cdevent closed 5 years ago
@cdevent this is an example.
I think you can render checkbox with any wrapper, it's not an issue. and just make sure all the props all pass down to checkbox element, for example:
selectionRenderer: ({ mode, ...rest }) => (
<input type={ mode } { ...rest } /> // make sure rest are spread to input element
)
Hi, I need to customize checkbox and I can't normally wrap it,
I've added additional wrapping elements - then when I'm clicking on this it's not selecting a row, working only clicking on a row.
Here is' fragment: