facet Problem
Hi,
I get an exception by the code posted below.
facet 'header' already has a child associated.
Is there a problem, if I use facet tag within a dataTable's child object?
<t:dataTable var="test">
<t:columns var="page" value="#{CompanySearchBean.pagingHelper.pagesList}"
headerstyle="font-weight: normal;">
<f:facet name="header">
<h:commandLink action="#{CompanySearchBean.setPage}"
rendered="#{CompanySearchBean.pagingHelper.currentPage != page}">
<f:param id="page" name="page" value="#{page}" />
<h:outputText value="#{page}"/>
</h:commandLink>
<h:outputText value="#{page}"
rendered="#{CompanySearchBean.pagingHelper.currentPage == page}"></h:outputText>
</f:facet>
</t:columns>
</t:dataTable>

