1 Reply Latest reply on Nov 9, 2010 9:22 AM by ilya_shaikovsky

    Several footers in rich:scrollableDataTable

    mtigua

      Hello everbody!

       

      I have a rich:scrollableDataTable with one header and one footer per column like this:

       

      <rich:column width="90px">

      <f:facet name="header">

      <h:outputText value="Total Copago"/>

      </f:facet>

      <h:outputText value="#{item.totalCopago}"/>

      <f:facet name="footer">

      <h:outputText value="#{reembolso.montoTotalCopago}"/>

      </f:facet>

      </rich:column>

      <rich:column width="90px">
      <f:facet name="header">
      <h:outputText value="Total Copago"/>
      </f:facet>
      <h:outputText value="#{item.totalCopago}"/>
      <f:facet name="footer">
      <h:outputText value="#{reembolso.montoTotalCopago}"/>
      </f:facet>
      </rich:column>

       

      <rich:column width="90px">

      <f:facet name="header">

      <h:outputText value="Total Beneficio"/>

      </f:facet>

      <h:outputText value="#{item.totalBeneficio}"/>

      <f:facet name="footer">

      <h:outputText value="#{reembolso.montoTotalBeneficio}"/>

      </f:facet>

      </rich:column>

      But, I need to put two aditional rows (o more footers) and this rows must be inside scrollableDataTable.
      Anybody have some idea about how to do this ?
      Thanks in advance.