Hi All,
I'm new here and just starting to write behaviours scripts.
I'm trying to hide the fields based on select list but its only working properly.
Only one select list working and couldn't pick up an error.
Def currentField = getFieldbyId(getFieldChanged())
def selectedoption = currentField.getValue() as String
def isCIselected = selectedOption == "CI"
def isInvestmentgroup = selectedOption == "Investmentgroup"
def isIntel = selectedOption == "Intel"
//Hide Fields
rationale.SetHidden(isCISelected)
rationale.SetHidden(isInvestmentgroupSelected)
rationale.SetHidden(isIntelSelected)
Can anyone help please.