Trying to open another app when selecting a row in a table

Going from the multi-page example in the docs (Share data between apps), I have my App A as a table of data and when the user select a row, I'd like to open App B but the built-in "ON ROW CLICKED" menu only allows for a query to be selected not the "open a new app" like in the example. Any thoughts ?

I know that adding action buttons to my rows allows me that but it’s cluterring the app a little

Hey @thomas-faller you trigger a JS Query “On Row Clicked” and then make the JS query look like this
utils.openUrl('https://yourdomain.tryretool.com/your-app-name', true);
The second parameter true will open the app in a new tab.

Quick update - you can also use event handlers to open a Retool app or any URL!