Using the datagrid element, there is a ‘delete’ icon provided in the actions column. When the ‘delete’ icon is clicked, a modal window opens and asks for confirmation where a workflow captures the record id. If confirmed, then a workflow deletes the row (using the selected record id), fetches the collection, and closes the modal window.
Question: how do i bind the text element of the confirmation window to display the selected row’s email address? I am assuming that the formula would be something like:
Users.data[0].email
Except, how do I substitute the ID of 0 with the actual variable used to store the selected row?