📄 example-twotables.jsp
字号:
<jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:display="urn:jsptld:http://displaytag.sf.net"> <jsp:directive.page contentType="text/html; charset=UTF-8" /> <jsp:directive.page import="org.displaytag.sample.*" /> <jsp:include page="inc/header.jsp" flush="true" /> <jsp:scriptlet> Object foo = session.getAttribute( "two-test1" ); if( foo == null ) { session.setAttribute( "two-test1", new ReportList() ); session.setAttribute( "two-test2", new ReportList(12) ); }</jsp:scriptlet> <h2>Two tables working together in the same page with independent paging-sorting</h2> <display:table name="sessionScope.two-test1" sort="list" pagesize="10" id="table1" export="true"> <display:column property="city" title="CITY" group="1" sortable="true" headerClass="sortable" /> <display:column property="project" title="PROJECT" group="2" sortable="true" headerClass="sortable" /> <display:column property="amount" title="HOURS" /> <display:column property="task" title="TASK" /> </display:table> <display:table name="sessionScope.two-test2" sort="list" pagesize="10" id="table2" export="true"> <display:column property="city" title="CITY" group="1" sortable="true" headerClass="sortable" /> <display:column property="project" title="PROJECT" group="2" sortable="true" headerClass="sortable" /> <display:column property="amount" title="HOURS" /> <display:column property="task" title="TASK" /> </display:table> <p>Do you need to put more than one <code><![CDATA[<display:table>]]></code> in the same page, with independent pagination and sorting?</p> <p>No problem: parameter in pagination, sorting and exporting are encoded to be processed only by the source table. The only requirement is to provide a different <code>id</code> attribute for the table. If you click on sorting or pagination links in one of the previous tables the other one doesn't get affected by that.</p> <jsp:include page="inc/footer.jsp" flush="true" /></jsp:root>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -