I need to display relational data, in two tables. When the user clicks/selects a row in one, I want to show the related data in the other. I don't see an event/callback for this. How can I do this? (I'm a C/C++ embedded software engineer, so you can be technical!)
We do not have this option built in at the moment. Easiest way to achieve it would be to write a JS function which will listen to row click and then redirect to the page with desirable table. If all the related data are in one table you can use URL search to filter it to show just the related data - Documentation
Hi,
I need to display relational data, in two tables. When the user clicks/selects a row in one, I want to show the related data in the other. I don't see an event/callback for this. How can I do this? (I'm a C/C++ embedded software engineer, so you can be technical!)
Regards,
James
Hi James,
Thank you for your inquire.
We do not have this option built in at the moment. Easiest way to achieve it would be to write a JS function which will listen to row click and then redirect to the page with desirable table. If all the related data are in one table you can use URL search to filter it to show just the related data - Documentation