| 说明 extreme Table 是个很不错的table tag,打算记录底它的版本发布 change Log :)
它的RoadMap : http://extremecomponents.org/extremesite/public/roadMap.jsp 以往本BLOG介绍: http://www.blogjava.net/davidxu/archive/2005/08/09/9683.aspx
我们从这里开始:
[1.0.2-M1 release ]
1.0.0-M2-A2 - by 官方
- Able to mix the ColumnTag and the ColumnsTag. Will need to use the method
model.getColumnHandler().addAutoGenerateColumn(column);
- Every attribute of every tag will accept an EL Expression
- Will accept a Set for the collection now
部分使用说明 --by david xu
1 table 新增加var属性,支持定义bean name (可选择),可以不用${collectionName.memberName}这样难以理解的语法. 用官方的话就是 "Added TableTag var attribute. Used (optionally) as the name of the variable to hold the current bean. " <ec:table collection="humanList" action="${pageContext.request.contextPath}/index.jsp" imagePath="${pageContext.request.contextPath}/images/table/*.gif" cellpadding="1" saveFilterSort="true" var="human" title="我的第一个tag table"> </ec:table> ${human.name} 取得
|