The radio button in Java – struts 1 ActionForm does not have “selected”
I have a JSP page with many questions and an ActionForm with a map with input names and values
When I load the page, the value of the radio input is not set (checked properties), but the check box is
Table definition:
Radio station (JSP):
Radio (HTML):
Check box (JSP):
Check box (HTML):
The checked property is not set, but when the page load / form is submitted through getboolean / setboolean, the value is not empty
My ActionForm class has the following related methods available:
I use struts 1.2.0 on Ubuntu 14.04 7. Hibernate 3, displayTag 1.0, openjdk 6 and Tomcat 6
to update
However, the following radio inputs work correctly (as you can see in the checked attribute):
Radio station (JSP):
Radio (HTML):
However, after using Boolean to edit the input to use the value, the checked property is still not set at load time
Update (5 / 10 / 15)
After making the changes recommended by shinjw, the values are saved correctly (this is a separate problem), but when getboolean returns true, the checked property is still not set for some radio buttons
Solution
First, Boolean has only true or false Not 0 or 1 @ h_ 403_ 6@
" styleClass="pepperoni1" value="true" >Yes
" styleClass="pepperoni0" value="false" >No
Best use auto@R_386_2419 @A Boolean object, not a Boolean value In this way, the value must be set to a Boolean value so that it contains a value
Doing so also reveals a logical problem in your code
What do you think might happen when your Boolean value is always set to false? public void setBoolean(String key,boolean value){ values.put(key,value?“yes”:“”); }
Such a thing may become a better solution