Hi all.

To solve this bag you should change /common/tableFooter.xhtml adding 
<ui:composition> tag.

There is this changed file

<html xmlns="http://www.w3.org/1999/xhtml"; 
xmlns:c="http://java.sun.com/jstl/core";
      xmlns:f="http://java.sun.com/jsf/core"; 
xmlns:h="http://java.sun.com/jsf/html";
      xmlns:ui="http://java.sun.com/jsf/facelets"; 
xmlns:t="http://myfaces.apache.org/tomahawk";>
 <ui:composition>
<h:panelGrid columns="1" styleClass="scrollerTable" 
columnClasses="standardTable_ColumnCentered">
    <t:dataScroller id="scroll" for="#{tableName}" fastStep="10"
        pageCountVar="pageCount" pageIndexVar="pageIndex" immediate="false"
        styleClass="scroller" paginator="false" paginatorMaxPages="9"
        paginatorTableClass="paginator">
        <f:facet name="first" >
            <t:graphicImage url="/images/arrow-first.gif"/>
        </f:facet>
        <f:facet name="last">
            <t:graphicImage url="/images/arrow-last.gif"/>
        </f:facet>
        <f:facet name="previous">
            <t:graphicImage url="/images/arrow-previous.gif"/>
        </f:facet>
        <f:facet name="next">
            <t:graphicImage url="/images/arrow-next.gif"/>
        </f:facet>
        <f:facet name="fastforward">
            <t:graphicImage url="/images/arrow-ff.gif"/>
        </f:facet>
        <f:facet name="fastrewind">
            <t:graphicImage url="/images/arrow-fr.gif"/>
        </f:facet>
    </t:dataScroller>
</h:panelGrid>
</ui:composition>
</html>



Reply via email to