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";
}
Solved! Go to Solution.
Views
Replies
Total Likes
Notes and Notes2 are list boxes. Violation and Suspension are radio buttons. Is that correct? If so, are Violation and Suspension in an exclusion group?
Is this the requirement, Violation should display Notes and hide Notes2 and Suspension should hide Notes and display Notes2?
Steve
Views
Replies
Total Likes
Notes and Notes2 are list boxes. Violation and Suspension are radio buttons. Is that correct? If so, are Violation and Suspension in an exclusion group?
Is this the requirement, Violation should display Notes and hide Notes2 and Suspension should hide Notes and display Notes2?
Steve
Views
Replies
Total Likes
What do you mean exclusive group?
The second question,"Is this the requirement, Violation should display Notes and hide Notes2 and Suspension should hide Notes and display Notes2?"
Yes!!!
Views
Replies
Total Likes
Is this what you are after?
Steve
Views
Replies
Total Likes
Money!!!!
Thanks Steve!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies