也來介紹一下 extremeTable
1、何為 extremeTable,又一個開源taglib
extremeTable,開源的jsp 自定義標(biāo)簽,以表格的形式顯示數(shù)據(jù),當(dāng)前最新版本為 1.0.1-M1.
它是一個類似display tag,valueList 等開源產(chǎn)品.
homepage: http://extremecomponents.org/
download: http://sourceforge.net/projects/extremecomp/
開源產(chǎn)品作者:
Jeff Johnston ,現(xiàn)居住美國,圣路易斯.
六年web應(yīng)用軟件開發(fā)經(jīng)驗(yàn),eXtremeComponents最初的創(chuàng)建者. 負(fù)責(zé)設(shè)計及大部分的編碼。
其它還包括Paul Horn ,eXtremeTree的技術(shù)設(shè)計, 以及大部分的編碼;
Dave Goodin,Brad Parks等.
主要特色
1、導(dǎo)出EXCEL以及pdf無需再另寫jsp(這個基本與valuelist作比較,因?yàn)橐郧坝胿alueList的時候每寫一個table都要再寫一個excel.jsp)
2、擴(kuò)展性比較強(qiáng),基本上想怎樣改就怎樣改,對jar影響比較少。
3、另外據(jù)官方聲稱有以下四點(diǎn)
安裝要求
1、Servlet 2.3 或更高
2、 JDK 1.3.1 或更高
最小的Jars需求
1、commons-beanutils 1.6
2、commons-collections 3.0
3、 commons-lang 2.0
4、 commons-logging 1.0.4
5、 standard 1.0.2
PDF 導(dǎo)出要用到的包:
1、 avalon-framework 4.0
2、batik 1.5-fop-0.20-5
3、 fop 0.20.5
4、 xalan 2.5.1
5、 xercesImpl 2.6.1
6、 xml-apis 2.0.2
XLS 導(dǎo)出要用到的包:
1、 poi-2.5.1.jar
2、安裝與測試
下載解壓到的主要文件包括
[1]src源文件
[2]extremecomponents.jar以及其它所依賴的包
[3]tld文件
extremecomponents.tld
[4]一組默認(rèn)樣式及圖片
extremecomponents.css
[5]用以校驗(yàn)安裝的測試頁面
test.jsp
[6]doc文檔,比較詳細(xì)
快速配置安裝
web app目錄結(jié)構(gòu)
/ROOT
/WEB-INF/web.xml
/tld/extremecomponents.tld
/lib
/classes/extremecomponents.properties
[extremecomponents.properties文件可到source\org\extremecomponents\table\core\中得到]
/images/*.jpg [一組默認(rèn)樣式及圖片]
/css/extremecomponents.css
/test.jsp
/index.jsp [用于學(xué)習(xí)以及擴(kuò)展測試用代碼請見下]
web.xml 配置
包括taglib uri 定義以及導(dǎo)出文件filter,由于只是手板功夫,這里就略過了,相關(guān)代碼如下:













配置好所有后,開tomcat,測試瀏覽http://your_web_app/test.jsp,看到
Congratulations!! You have successfully configured eXtremeTable!
恭喜你,這表示安裝成功!
3、動手學(xué)習(xí)這個taglib
建index.jsp頁面,修改代碼如下


































效果如下:
[1] 1.0.1-M1 版支持國際化
修改web.xml文件增加




意指到 com.itorgan.tags.extreme 下找 extremetableResourceBundle_[language]_[country].properties 文件
extremetableResourceBundle_en_US.properties代碼如下
table.statusbar.resultsFound={0} results found, displaying {1} to {2}
table.statusbar.noResultsFound=There were no results found.
table.toolbar.showAll=Show All
extremetableResourceBundle_zh_CN.properties如下.
table.statusbar.resultsFound={0} \u6761\u7EAA\u5F55\u7B26\u5408\u6761\u4EF6, \u73B0\u5728\u662F\u7B2C {1} \u81F3 {2} \u6761\u7EAA\u5F55
table.statusbar.noResultsFound=\u6CA1\u6709\u8981\u67E5\u8BE2\u7684\u7EAA\u5F55\u3002
table.toolbar.showAll=\u6240 \u6709
補(bǔ)充:中文 - > Unicode編碼 可通過反編譯class文件或用native2ascii命令得到 。
然后在table標(biāo)簽中增加locale屬性即可切換














[2] 保留table的上一次狀態(tài)
是指,不管跳轉(zhuǎn)到另一個后再返回,extremeTable會將之前的Filter,Sort參數(shù)保存到session中,以至返回看到的頁面還是之前的狀態(tài).
修改extremecomponents.properties文件
table.useSessionFilterSortParam=foo
saveFilterSort="true" 注意:saveFilterSort="true"不能在properties文件中配置,只能在頁面中設(shè)




新建一頁面用于跳轉(zhuǎn)的頁面 1.jsp
代碼為

[3] 樣式修改
基本的HTML結(jié)構(gòu)














































extremeTable支持樣式快速切換.可自定的樣式包括column 的td以及table的一些屬性,例如cellpadding等,
另本人發(fā)現(xiàn),在properties中如下設(shè)置tableHeader的樣式是不行的.不知道是否一個BUG
table.headerClass=itoTableHeader
table.headerSortClass=itoTableHeaderSort
只能繼承一個HeaderCell







新的樣式代碼:

<ec:table
collection="goodss"
action="${pageContext.request.contextPath}/test.jsp"
imagePath="${pageContext.request.contextPath}/images/*.gif"
cellpadding="1"
title="my bread"
saveFilterSort="true"
locale="zh_CN"
>
<ec:column property="code" title="編號" width="100" styleClass="GridTd"/>
<ec:column property="name" title="名稱" width="200" styleClass="GridTd"/>
<ec:column property="status" title="狀態(tài)" width="80" styleClass="GridTd"/>
<ec:column property="born" title="生產(chǎn)日期" width="100" cell="date" format="yyyy-MM-dd" styleClass="GridTd"/>
</ec:table>
效果見下:
[4] 實(shí)現(xiàn) table width 自動累加
原來的extremeTable 寬度要自己set。不會自動能過下面的column累加。
本人作了個修改以達(dá)到自動累加,省得自己加寫上去:
查看htmlView.java 兩處地方
toolbarPlacement
tableStart可見兩處地方要修改的
[5] custom cell
在properties文件中我們可觀察到:





當(dāng) column 默認(rèn)使用org.extremecomponents.table.cell.DisplayCell




























ec已其它c(diǎn)ell
日期格式化: cell = " date " format = " yyyy-MM-dd "
數(shù)字格式化: cell="currency" format="###,###,##0.00"
另外,extremeTable支持自定義cell
在這里我以一個簡單的例子[以input框的形式出現(xiàn)] 說明如何實(shí)現(xiàn)這一方便的擴(kuò)展






















properties文件增加

jsp代碼

效果顯示為
當(dāng)然這只是一個簡單的demo以說明如何自定義cell
如上面你可以簡單的實(shí)現(xiàn)同樣功能



[6]Extended Attributes
新版本支持Extended Attributes,方便了用戶擴(kuò)展,記得0.9版本時還要我修改N個地方,現(xiàn)在為table,column增加attribute方便多了.
為table增加一個height的屬性








































然后就可以通過
model.getTableHandler().getTable().getAttribute("height")取得這個值.可以方便擴(kuò)展.
繼承XlsView.java

















[8] 解決pdf中文問題
幫POF注冊中文字體,再修改export view即可解決
[9] Pagination
[10] 其它亮點(diǎn)
A sortable 與 exportable 屬性 ,分別指可否排序,可否導(dǎo)出. 值為 false/true
B 可以直接在<ec:column></e:column>中加html代碼.
并可用{collectionName.objectName}類似的語法取得當(dāng)前object的成員變量值
C ${ROWCOUNT}可取當(dāng)前row num,是指以1開始計算
D
<ec:form name="mainform" action="goods.do"> </ec:form> 設(shè)置form name以及action
參考文檔
http://extremecomponents.org/extremesite/public/documentation.jsp