Is there a way to link from an Universal App Table view to the corresponding Universal App Single Record view.
Because we have complicated datastructures, the single record view helps to show it in good looking and smoth handling way.
But the search functions to find the correct single record are not so well to handle.
So the question ist, if there is a way to find the needed record in a Table or Query view and to open the corresponding Single Record view in the same Universal App? Maybe over an button or something else.
You can create a button that opens a particular record on its single record page:
Every record has a unique URL. Here one example:
The URL parameters record_id is key. It is the row id of a record. You can use the function rowid() in a formula column to show in your table.
With this information available, add a button column with the “Open URL” action. The URL is https://cloud.seatable.io/external-apps/<app_id>/?page_id=<page_id>&record_id={rowid_column}
with <app_id> and <page_id> being the app_id and page_id of your app and the single record page, respectively.