<display:column property="id" sortable="true"
paramId="id" paramProperty="id" titleKey="adminList.id"/>
<display:column property="username" sortable="true" titleKey="adminList.username"/>
<display:column property="password" sortable="true" titleKey="adminList.password"/>
<display:column>
<s:url id="removeUrl" action="remove">
<s:param name="id" value="37" />
</s:url>
<s:a href="%{removeUrl}" theme="ajax" targets="adminList">Remove</s:a>
</display:column>
</display:table>
when i will execute this code the statement
<s:param name="id" value="37" />
will be excecuted perfectly but I can't get that value in struts action class. also if i pass
<s:param name="id" value="adminList.id" />
then it will pass nothing