jsf - rich:scrollableDataTable with a 2 row header -
i'm developping scrollabledatatable header having 2 row in it.
<rich:scrollabledatatable ... <rich:column...> <f:facet name="header"> <s:div> <h:panelgrid columns="1"> <h:outputtext value="hi" /> <h:outputtext value="all" /> </h:panelgrid> </s:div> </f:facet> ... </rich:column>
but see 'hi' on video. in html produced see both rows, infact looking better in html code using web-browser-debug (f12) see header of column has height fixed 20px or 21px.
to see second header-row must enlarge changing (using web-browser-debug):
.rich-sdt-header-cell-body (height : 40px)
gridbodytemplate (top: 42px)
header:normalbox (height: 42px)
gridheadertemplate (height: 42px)
how can in xhtml? other scrollabledatatable&columns have header composed 1 row (and goes me). need, in 1 situation, have header more taller. possible, , how?
thanks!
solved adding "headerclass" tag rich:column.
in way can specify height of header row (rows) , other things.
Comments
Post a Comment