怎么合并表头?
buptwhisper
2009-12-01
我想动态的生成表头并合并一些表头,在后台如何实现?
|
|
terryzhou
2009-12-01
<rich:column colspan="3"> <h:graphicImage value="#{cap.stateFlag}"/> </rich:column> <rich:column breakBefore="true"> <h:outputText value="#{cap.state}"/> </rich:column> <rich:column > <h:outputText value="#{cap.name}"/> </rich:column> <rich:column> <h:outputText value="#{cap.timeZone}"/> </rich:column> |
|
buptwhisper
2009-12-02
我需要在后台使用jsf api来实现,即java code;
在页面上实现你这样很好。 比如使用breakBefore属性 HtmlColumn column = new HtmlColumn(); column.getAttributes().put("breakBefore", true); ............... 但是,我发现它根本没有配置breakBefore属性,同样colspan,rowspan也没有起到作用。希望指教。 |
|
terryzhou
2009-12-02
下载richfaces
www.jboss.org rich:column是重新封装过的 |
|
buptwhisper
2009-12-02
我有richfaces的jar包。
|
|
buptwhisper
2009-12-02
oh,yes
使用org.richfaces.component.html.HtmlColumn就ok了,不能用javax的,3ks and then. |