Hello Everyone,
I am working on customization from GUI only. I want make a Custom Field visible if one of some options is selected from previous field.
Existing Field -
Select Profile (name of field is profile and options are Employee, Customer, Distributor, New Customer, New Distributor)
I want Birthday to be visible only when one of first three options is selected.
I am able to set it for single rule / condition.
eval:doc.profile == ‘Employee’
eval:doc.profile == ‘Customer’
eval:doc.profile == ‘Distributor’
When I give any one of the above mentioned rules, it is implemented but how to make it viscible if anyone of the option is selected? I want rule for multiple options
Regards