Hi, i have a radio field (fldRadio) with two value: S or P.
I want to change a label of another fields:
If ({fldRadio} == ‘S’){
sc_label({fldText}) = ‘Society’;
} else {
sc_label({fldText}) = ‘Person’;
}
In javascript onChange of radio not work.