Replies: 1 comment 4 replies
-
I've stumbled on the same thing, I'm currently trying to reset row selection any time the data updates. I don't know whether it's the correct approach. useEffect(() => {
table.resetRowSelection(true);
}, [data]); Have a look also to this if interested: #4498 |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How would you do row selection with controlled, async pagination? Basically, I make a selection, go to another page (load new data, get rid of previous data), navigate to the previous page and still see previously selected rows selected?
Beta Was this translation helpful? Give feedback.
All reactions