Parameters for system texts

0
When a user deletes an item I'd like to display a more detailed message of what is being deleted in the confirmation box. For example, if the datagrid contains Departments and the user selects the 'Accounting Department'  and clicks delete, I would like to display 'Delete Accounting Department?' vs 'Delete 1 items?' I see that I can edit the System Text but is there a way to modify the parameters to use Department Name instead of the count?
asked
1 answers
1

Tracy,

You can accomplish this using microflows and a popup window. Add a action button to your datagrid that triggers a microflow. That microflow will pass a parameter from the datagrid, and you can use the show page activity to display a pop up with that object as the caller of the page. From here you can display whatever text you want. You can determine the text in the microflow before showing the pop up or have some text on the page hidden with conditional visibility. Then you can add another microflow button that will actually delete the object and as well as cancel button.

 

answered