| Author |
equivalent of checked attribute of radio button in struts
|
Pranav Pal
Ranch Hand
Joined: Nov 04, 2007
Posts: 74
|
|
|
What is the equivalent attribute of "checked" attribute of <input type="radio"> in <html:radio>?
|
Hakuna Matata!
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
There is no such equivalent. A Struts <html:radio> tag is tied to the ActionForm bean property specified in the tag. If the ActionForm property is set to the value specified in the tag, the button will show as checked. Otherwise, it will show as unchecked. Example: In the above example, if the form bean property "color" contains "blue, the second button will be checked.
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: equivalent of checked attribute of radio button in struts
|
|
|