我的 displaytag 有这个问题...当我检查表中的某些行并进入另一个页面以检查其他行后,上一页的选中元素消失了。如果我返回上一页,所有行都未选中...这是我的代码:
<%@taglib prefix="s" uri="/struts-tags" %>
<%@taglib prefix="display" uri="http://displaytag.sf.net" %>
…
<s:form action="actionSample" theme="simple">
<display:table
id="row"
name="tableSample"
requestURI="/sample"
sort="list"
pagesize="10"
cellpadding="0"
cellspacing="0"
>
<display:column property="one" title="ONE" sortable="true" />
<display:column property="two" title="TWO" sortable="true" />
<display:column headerClass="sortheader" title="SELECTION" style="text-align:center;">
<s:checkbox theme="simple" name="check" fieldValue='%{#attr.row.idOne}' />
</display:column>
</display:table>
<div>
<br>
</div>
<div align="right">
<s:submit type="button" label="SUBMIT"/>
</div>
请问这个问题怎么解决啊,谢谢解答。。。
PS我省略了动作类的代码,有一个名为“check”的字符串数组,用于存储所选元素的id