Is it possible to conditionally display a section of a form based on the value of a prior field? Not simply that it changed, but the actual value.
Context is that on a JobRequisition create form - Field called ReasonForOpening can have possible values of "REPLACEMENT" or "NEW POSITION". I know I can refresh the fields when the value is changed, but not sure how to show/hide the section.
paragraph
ReasonForOpening
required
when value changed
refresh UFReplacement
refresh UFReplacementReason
Here is the section I am trying to hide
visible when (VHConditionIsReplacement)
header2 of "Replacement"
two column distributed
UFReplacement
use text area of 2 lines
display as required when (VHConditionIsReplacement)
UFReplacementReason
display as required when (VHConditionIsReplacement)
Here is my attempt at the condition, but I see why it would only evaluate once the req is created - not when it's "in flight".
JobRequisition is a BusinessClass
owned by Recruiting
Conditions
VHConditionIsReplacement
when (ReasonForOpening = "REPLACEMENT")