Integrate Table state into Redux store
Hey everyone, you guys ok?
I'm trying to integrate a table's state into a Redux Store, but for the life of me I couldn't find a way to correctly set the
rowSelection
state into the store because of what the parameter is for onRowSelectionChange
- it is a function which, when resolved for a selected row, returns an object with the selected row index and a value of
true
({ 0: true }
), and when resolved for a deselected row just returns an empty object (with which I just can't find what was deselected). Is there a way to accomplish this?0 Replies