-
Rich data table problem
Hi, there.
I'm trying to build a rich data table in JSF and already managed to build the header.
But when I add columns nothing shows.
Can anyone help me? Thanks in advance.
Here goes my source code:
Code:
<rich:dataTable
cellpadding="0" cellspacing="0"
width="780" border="0">
<f:facet name="header">
<rich:columnGroup>
<rich:column>
<rich:spacer />
</rich:column>
<rich:column>
<h:outputText value="Nome" />
</rich:column>
<rich:column>
<h:outputText value="Canal" />
</rich:column>
<rich:column>
<h:outputText value="PT" />
</rich:column>
<rich:column>
<h:outputText value="EN" />
</rich:column>
</rich:columnGroup>
</f:facet>
<rich:subTable>
<rich:column>
<h:outputText value="testing"></h:outputText>
<f:facet name="footer">
<rich:spacer />
</f:facet>
</rich:column>
</rich:subTable>
</rich:dataTable>
-