How to pass current row id of table for a task group

How to pass current row id of table for a task group

1 Like

To access the current object, we use the [] notation.

For example, if tempObject.users is an array of objects serving as the table’s data source, we can use getVal("tempObject.users[].userId") to get the userId for a specific row.

So, If we want to edit the 3rd row, getVal("tempObject.users[].userId") would be equivalent to getVal("tempObject.users[2].userId").

1 Like