Button action for add row and then show edit screen

Let’s say we’re on a record of “startup” entity.
We also have a “rating” entity linked to startup by startup_id.

I want to place an “Add rating” button on “startup” view, that will do 2 things:

  1. create a row in “rating” table and set startup_id on that row (done this)
  2. open the edit screen for the new record.

Is there a way to do the second thing, in actions?

Thanks

I think that works if the new row has a template field with a unique ID of combined startup + user. The action “Link to screen” then uses a relation field on that template field to open the right screen.

1 Like

Super cool, it works!
Many thanks, Ric!

1 Like