What version are you using?
Is there any way to clear the selected rows programmatically?
User select rows, press button for action, and in the end it would be nice to clear selection.
hey @brokeyourbike, just put a ref on the table and then call unselectAllInternal()
<vue-good-table ref="my-table" ...>
</vue-good-table>
// in your handler
this.$refs['my-table']. unselectAllInternal();
closing.
Most helpful comment
hey @brokeyourbike, just put a
refon the table and then callunselectAllInternal()closing.