I have two sets of Radio button Group0 and Group4 .. i want to hide and change username(tooltip) of group4 when Group0 is checked / unchecked
I have two sets of Radio button : Group0 and Group4 ..... I want to make Group4 readonly and change username(tooltip) when group0 is not choosed...... and when Group0 is choosed then the Group4 is not readonly and changes to other username (tooltip).
I used the following javascript in Group0 :
var f = this.getField("Group4");
if (event.target.value=="Choice1") {
f.display = display.visible;
f.userName = "Please choose one of quantity";
} else {
f.display = display.hidden;
f.userName = "";
f.setFocus();
}
It does the first condition but when i reset the Group0 Group 4 doesnot change to the second condition.
Please help
