Advance Display Rules
Admin User can define rules to change the visibility of a field based on the user input. This feature is optional.
You can assign rules using conditional expression for any of the following actions
Display Error message in the Target Field
Example: You can show a Error message in Leave End Date Field if start date is lesser than the start date by using the following condition.
Condition:Date.parse(zf.Leavestartdate) > Date.parse(zf.LeaveEndDate)
Target Field:Leave End Date
Error Messge: Set a valid end date.
Set visibility of the Target Field
Example: You can set the visibility of a Social Security Number field as mandatory, if country is USA by using the following condition.
Condition: zf.country== 'USA'
Target Field:Social Security Number
Error Messge:
Visibility:Mandatory
Last updated