Ok this might be really simple for someone to answer.
I have a radio button I'm using to toggle between two list boxes with multiple lines of text (hidden and then visible). Here's the problem, when I toggle the radio button back and forth I have both list boxes displaying thier notes at the same time. I would like to have the radio button display one messages at a time when you toggle between them. Here is my script.
Radio Button named Violation:
form1.#pageSet[0].Page1.#subform[0].action[1].Violation::click - (JavaScript, client)
if (this.rawValue == null) {
Notes.presence = "hidden";
}
else {
Notes.presence = "visible";
}
Radio Button named Suspension:
form1.#pageSet[0].Page1.#subform[0].action[1].Suspension::click - (JavaScript, client)
if (this.rawValue == null) {
Notes2.presence = "hidden";
}
else {
Notes2.presence = "visible";
}