Replies: 1 comment
-
I set it up this way and it worked for me const [data, setData] = React.useState([]) const updateData = newData => { setData(newData) React.useEffect(() => { useReactTable({ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
I'm looking to recreate the following setup but in V8:
https://react-table-v7.tanstack.com/docs/faq#how-do-i-stop-my-table-state-from-automatically-resetting-when-my-data-changes
I have an editable table. If the user updates the value of a cell, I want to prevent any column sorting and filtering from automatically being applied to the new data. Is that possible in v8?
I really appreciate any help you can provide.
Beta Was this translation helpful? Give feedback.
All reactions