selectedRows to other table in other app

Hi everyone,

iam totally new and i cant create the write query. i have a table with customers and i want to select customers and send this selected rows with there email addresses to another table in my second app. i tryed to store that information in localstorage this works for only the first selected
but i dont know how to fill that information in the other app.

hopefully anyone can help me
regards

localStorage.setValue('selectedRowsData', table1.selectedRow.data['0']);

Hey @NicoB! Welcome to Retool :slight_smile: I'm happy to help.

So you'd like to update a table in your database first? And have a table in your second app display data from that database table?

If so, you'd just need to write an update query to your database table like this:

Then, in your other app, you can write a GET query to the table we just updated wit the selectedRow and show that query result in your table with {{ getQuery.data }}

Let me know if you have any questions!

2 Likes