I had a working display tag radio button with the below code. Below is the code :
<s:form action="deleteUser.action" method="post">
<display:table id="conf" name="users" requestURI="viewUsers.action" pagesize="10">
<display:column title="Edit" scope="request">
<input type="radio" name="selectedUser" value="${conf.username}" onclick="getValue()" />
</display:column>
<display:column property="username" title="User Name" />
<display:column property="email" title="Email" />
<display:column property="role" title="Role" /></display:table><s:submit method="deleteUser" key="Delete User" align="center" />
</s:form>
I have upgraded strtus2-core-2.3.4.jar
to strtus2-core-2.3.14.jar
and some other jars.
Now when I select a radio button and click "submit" I do not get the underlying value of the radio button instead I get ${conf.username}
into my POJO field. Did anyone face this? Am I missing any libraries?