presidents.jsp
来自「j2ee开发优秀的表格控件」· JSP 代码 · 共 84 行
JSP
84 行
<%@ taglib uri="/tld/extremecomponents" prefix="ec" %><%@ taglib uri="/tld/c" prefix="c" %><html><head> <title>eXtremeComponents</title></head><body> <ec:table var="pres" items="presidents" action="${pageContext.request.contextPath}/presidents.run" method="post" title="Presidents" showTooltips="false" > <ec:exportPdf fileName="output.pdf" tooltip="Export PDF" headerColor="black" headerBackgroundColor="#b6c2da" headerTitle="Presidents" /> <ec:exportXls fileName="output.xls" tooltip="Export Excel" /> <ec:row highlightRow="true"> <ec:column property="fullName" title="Name"> <a href="http://www.whitehouse.gov/history/presidents/">${pres.fullName}</a> </ec:column> <ec:column property="nickName" /> <ec:column property="term" /> <ec:column property="born" cell="date" format="MM/dd/yyyy"/> <ec:column property="died" cell="date" format="MM/dd/yyyy"/> <ec:column property="career"/> </ec:row> </ec:table> <br/> <p> Below is the code that generates the above display. </p> <pre><ec:table items="presidents" var="pres" action="${pageContext.request.contextPath}/presidents.run" title="Presidents" > <ec:exportPdf fileName="output.pdf" tooltip="Export PDF" headerColor="black" headerBackgroundColor="#b6c2da" headerTitle="Presidents"/> <ec:export view="xls" fileName="output.xls" tooltip="Export Excel"/> <ec:row highlightRow="true"> <ec:column property="fullName" title="Name"> <a href="http://www.whitehouse.gov/history/presidents/" target="new">${pres.fullName}</a> </ec:column> <ec:column property="nickName" /> <ec:column property="term" /> <ec:column property="born" cell="date"/> <ec:column property="died" cell="date"/> <ec:column property="career" /> </ec:row></ec:table></pre> </body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?