selectedpresidentslisted.jsp
来自「j2ee开发优秀的表格控件」· JSP 代码 · 共 67 行
JSP
67 行
<%@ taglib uri="/tld/extremecomponents" prefix="ec" %><%@ taglib uri="/tld/c" prefix="c" %><html><head> <title>eXtremeComponents</title></head><body> <c:if test="${!empty param.userName}"> Hi, <c:out value="${param.userName}"/>! </c:if> <p>You selected the following presidents:</p> <ec:table action="${pageContext.request.contextPath}/public/demo/selectedPresidentsListed.jsp" items="selected" showPagination="false" showExports="false" filterable="false" sortable="false" autoIncludeParameters="false" > <ec:row> <ec:column property="fullName" title="Name"/> <ec:column property="nickName" /> <ec:column property="term" /> </ec:row> </ec:table> <p> <a href="<c:url value="/selectedPresidentsController.run?userName=${param.userName}"/>"> back to example </a> </p> <br/> <p> Below is the code that generates the above display. </p> <pre> <ec:table items="selected" showPagination="false" showExports="false" filterable="false" sortable="false" autoIncludeParameters="false" > <ec:row> <ec:column property="fullName" title="Name"/> <ec:column property="nickName" /> <ec:column property="term" /> </ec:row> </ec:table></pre></body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?