You need to sign in to do that
Don't have an account?

Is there a way to disable and enable a textarea based on the checkbox in flow?
Hi,
We are using Flow to develop some simple pages. One of them have a checkbox and a textarea. The textarea field should only enabled when checkbox checked. Does anyone know how to implement this?
Thanks,
We are using Flow to develop some simple pages. One of them have a checkbox and a textarea. The textarea field should only enabled when checkbox checked. Does anyone know how to implement this?
Thanks,
Ex:
<apex:inputTextarea value="{!Description__c}" disabled="{!If(Chkbox__c = true,false,true)}" />
You can modify above code as per you requirement.
Jingli