How to disable the button

0
Hi Team,  I want to disabled the button on screen. but it should get enabled on change of dropdown. plz suggest
asked
2 answers
6
  • Add visibility condition to show the generate report button
  • Visibility condition based on BPO drop dropdown
  • If no value is selected hide the button from the page
  • Put on change microflow for the dropdown to refresh the page and hide the button by condition
answered
0

Just add the following dynamic class to your button:

if $currentObject/Enum = empty then disabled else ''

 

answered