2 Radio button groups to hide multiple text field on No
Im creating a form with two radio buttons: CRadio and FRadio both with yes or no option and five text fields: TF1, TF2, TF3, TF4, TF5 to be visible unless both CRadio and FRadio are "No". Ive tried to add an action on Mouse Up in CRadio and FRadio but it if you select Yes on either group it wont display the text fields again
this.getField("TF1").display = display.hidden;
this.getField("TF2").display = display.hidden;
this.getField("TF3").display = display.hidden;
this.getField("TF4").display = display.hidden;
this.getField("TF5").display = display.hidden;
