How to enable /disable or grey out one complete row ?

0
Hi, I am using tree node ,inside that am using layout grid .In that layout grid I have 2 buttons ,on clicking one button I need to grey out entire row /disable entire row and again on clicking other button I need to bring it to normal form/enabled. Thanks
asked
1 answers
0

Hi Nisha

 

You can set the Editability of an object to conditionally. I would then check for a boolean attribute like “editable”, e.g. → $currentObject/editable = true.

 

By default this boolean is true, if you press the disable edit button you call a nanoflow and change that boolean to false. If you press the enable edit button you do the same but change the boolean to true

answered