- I have a table A, and B.
- When clicking a line in table A, an internal JSON objects gets loaded and some key K should be loaded into table B.
How to best do that?
- Using an
afterSelection
hook in table A andloadData
on table B? How to reference table B in the hook? - Using/setting up React’s state handling for table B? No idea how I can link a state in a way that a redrawn is triggered if the JSON content changes because of a click in table A.