after double clicking the row in a data grid, i want that double clicked row to be highlighted in some color and that should remain highlighted till the page is closed.

0
   after double-clicking the row in a data grid, I want that double-clicked row to be highlighted in some color and that should remain highlighted till the page is closed. how do we highlight the selected row in Data view, can anyone know this?     Thank You in advance       
asked
1 answers
0

You can create a button with ‘call a microflow’ action, in that microflow set a boolean attribute to true for that object.
Set this button as the default button on the grid.
And in the dynamic classes in appearance, check if boolean is true
then set the color you wish for that row.
You might have to write a custom class for data grid rows i think!

answered