Hi everyone -
I have a set of 5 radio buttons
Button Group name - Reason
Button 1 name - HealthMine- value is set to 1
Button 2 name - Child - value is set to 2
Button 3 name - Health - value is set to 3
Button 4 name - Exigency - value is set to 4
Button 5 name - ServiceMemberRelative - value is set to 5
I have a DropDownList named DDAffecting that I have set to "invisible"
If someone selects Health, I would like to have DDAffecting become visible, and if they select one of the other 4 buttons, it remains "invisible".
I've done this with a CheckBox before, like this:
Event - Mouse up
if(CheckBox1.rawValue == 1)
{fieldname.presence = "visible"
}
else
{fieldname.presence = "invisible"
}
What is the secret for getting a RadioButton to make the dropdown list visible, and what would be the Event it ties to?
I sure wish I could do something this simple without bothering someone - thanks so much.
poregon
For your logical statement being tested, have you tried to change 'CheckBox1'to 'Reason' and the value you want to test for from '1' to '3'?
For the field you are trying to show or hide, have you tried changing the 'fieldnama' to 'DDAffecting'?
George Kaiser