How to disable the whole data grid on clicking the row?

0
Hi,   I have made small page to display the details from database using data grid and on clicking any row to display below it. Now my issue is that after this I want to disable the whole data grid. Can any one please suggest what needs to be done.
asked
1 answers
0

Hi Chandra,

 

You could add a Boolean Attribute (isVisible) to the Entity of your first DataGrid. Set the default value to True. Then set the Visibility of the Datagrid on this Boolean. ( $currentObject/isVisible = true )

 

2.Step

When you click in a row, call a Microflow. In this Microflow use a ChangeObject Activity and set the Boolean isVisible Attribute to false.

 

The First DataGrid should be hidden now.

 

Good Luck!

 Hope this Helps,

answered