We would use a Behavior provided by the Adaptavist ScriptRunner plugin. On the Vendor Defect field, we would define the behavior to execute the following script:
def BDCField = getFieldById(getFieldChanged());
def SecOfferingField = getFieldByName("Vendor name");
def ThirdOfferingField = getFieldByName("Vendor Info");
if(BDCField.getValue() == "Yes")
{
SecOfferingField.setHidden(false);
ThirdOfferingField.setHidden(false);
}
The Vendor name and Vendor Info fields would be set to hidden in the same behavior.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.