jstl 控制列数

jstl 控制列数
   
xml 代码
 
  1. <c:forEach items="${componentModelList}" var="componentModelList" varStatus="status">  
  2.         <c:if test="${(status.count-1)%8==0}" >  
  3.         <tr>  
  4.         </c:if>  
  5.          
  6.              <td >  
  7.                  <input id="productComponentIds" type="radio" name="productComponentIds"   onclick="selectComponentMaterial();" title="<c:out value="${componentModelList.id}" />value="<c:out value="${componentModelList.product.id}" />"  />  
  8.                  <c:out value="${componentModelList.name}" />  
  9.              </td>               
  10.          
  11.         <c:if test="${(status.count)%8==0}" >  
  12.         </tr>  
  13.         </c:if>  
  14.         <c:if test="${status.last}">  
  15.         </tr>  
  16.         </c:if>  
  17.         </c:forEach>      
<c:foreach varstatus="status" var="componentModelList" items="${componentModelList}"><c:out value="${componentModelList.product.id}">
JSTL设置可以参考 www.ibm.com/developerworks/cn/java/j-jsp05273/
JSTL探讨 core可以参考 www-128.ibm.com/developerworks/cn/java/j-jstl0318/

本例主要用到c:forEach的 varStatus主要特性有
</c:out></c:foreach> JSTL的varStatus特性
特性 Getter 描述
current getCurrent() 当前这次迭代的(集合中的)项
index getIndex() 当前这次迭代从 0 开始的迭代索引
count getCount() 当前这次迭代从 1 开始的迭代计数
first isFirst() 用来表明当前这轮迭代是否为第一次迭代的标志
last isLast() 用来表明当前这轮迭代是否为最后一次迭代的标志
begin getBegin() begin 属性值
end getEnd() end 属性值
step getStep() step

你可能感兴趣的:(C++,c,IBM,C#,J#)