Posted on 2007-07-28 18:06
leekiang 阅读(346)
评论(0) 编辑 收藏 所属分类:
extremetable
1,排序,用alias="外键对象",如果有一行的外键为空,则会报错
2,可用 pageContext.getAttribute("var名字")得到当前行的对象
3,为什么et里的el表达式在servlet2.3下也能用,
4,filterCell="droplist"的用法
5,title="${title}"没问题,但用title="<%=request.getPatameter("title")%>"不行。
可以用title=="<span id='title'>${title}</span>",但要注意单双引号的交错
6,有些属性,其取值为[1,2,3,...] 如果要在列表里显示名字,并且要使用droplist,可在vo中加一个getXxxName()的方法,方法里用case switch结构返回各个数值的中文释义,
然后在标签中就可以把xxxName当作属性使用了。(只须有getter,可以不要setter)
7,日期列的格式化
cell="date" format="yyyy-MM-dd HH:mm:ss"
8,要支持导出,必须定义filter:
<filter>
<filter-name>eXtremeExport</filter-name>
<filter-class>org.extremecomponents.table.filter.ExportFilter</filter-class>
<init-param>
<param-name>responseHeadersSetBeforeDoFilter</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>eXtremeExport</filter-name>
<url-pattern>*.do</url-pattern>
</filter-mapping>
9,导出excel时名称为乱码的解决办法:
重写ExportFilter,然后在web.xml里把默认的那个导出过滤器替换掉。
见http://www.blogjava.net/lucky/archive/2006/04/08/40004.html
http://blog.csdn.net/micro_nucleus/archive/2006/06/09/782667.aspx
10,displaytag支持portlet?
15,其他
http://blog.csdn.net/using_wisdom/archive/2007/10/31/1859449.aspxhttp://www.blogjava.net/wuxufeng8080/articles/56985.html