Solved

Focus on a row


Userlevel 2
Badge +1

How to set focus on a specific row even after inserting a new row in a table?

icon

Best answer by Mark Jongeling 1 July 2022, 14:21

View original

This topic has been closed for comments

3 replies

Userlevel 7
Badge +23

Hi Sulea,

You can make use of the Go to Row process action. This process action can be places after a Starting action such as Add row

The flow will then be: When a user add a row, navigate to a specific row based on the given input parameters of this process action.

Userlevel 2
Badge +1

Hi Mark ,

I want to go to the next id column ,but i am passing it as a parameter .How can I increment it as a parameter as i have it as only the current id in the Go To Row procces action ? 

Userlevel 7
Badge +23

What you can do is Input the Primary key column values into the Go to Row input parameters. If any of them should be changed after the Add row process action and cannot be Outputted by this process action, you can apply a Process procedure on the Add row process action.

This will allow you to run SQL code after the Add row process action and change any process variable values, such as the variable assigned to the "next id” column in the input of the Go to Row.

Hope this helps!