⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 selectedpresidentslisted.jsp

📁 j2ee开发优秀的表格控件
💻 JSP
字号:
<%@ 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>  &lt;ec:table       items="selected"       showPagination="false"      showExports="false"      filterable="false"      sortable="false"      autoIncludeParameters="false"      &gt;        &lt;ec:row&gt;           &lt;ec:column property="fullName" title="Name"/&gt;           &lt;ec:column property="nickName" /&gt;           &lt;ec:column property="term" /&gt;        &lt;/ec:row&gt;  &lt;/ec:table&gt;</pre></body></html>	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -