Niall

Results 2 comments of Niall

https://tanstack.com/table/v8/docs/api/features/row-selection#toggleallrowsselected This should be the call you're looking for. As part of your button click handler: ``` onClick={() => table.toggleAllRowsSelected(false) } ``` Hope this helps.

In order to help for your specific use case it would be great if you can provide a sandbox. However, in general there are potentially a few misunderstandings about what...