I'm using struts1.3.8. I have two radio buttons in my application.
When i try to select one and then another, Both are getting selected.
But only one should be selected at any point of time...
How to resolve it???
The sample code is...
<tr>
<td>
<html:radio property="allPersons" value="AllPersons"/>
<b><bean:message key="register.allPersons"/></b>
</td>
</tr>
<tr>
<td>
<html:radio property="selectedPersons" value="Selected Persons"/>
<b><bean:message key="register.selectedPersons"/></b>
</td>
</tr>