After solving my integration trouble, I'm trying to use some component, now I've a trouble with dataScroller I use it this way :
           <t:dataScroller
               id="scroll_1"
               for="#{currencyGui.currenciesFilter}"
               paginator="true"
               fastStep="4"
               paginatorMaxPages="4"
               paginatorActiveColumnStyle="font-weight:bold;">
               <f:facet name="first">
                   <h:outputText value="|<" />
               </f:facet>
               <f:facet name="previous">
                   <h:outputText value="<" />
               </f:facet>
               <f:facet name="next">
                   <h:outputText value=">" />
               </f:facet>
               <f:facet name="last">
                   <h:outputText value=">|" />
               </f:facet>
               <f:facet name="fastforward">
                   <h:outputText value=">>" />
               </f:facet>
               <f:facet name="fastrewind">
                   <h:outputText value="<<"/>
               </f:facet>
           </t:dataScroller>        </P>

and the error message is :

javax.servlet.ServletException: javax.servlet.jsp.JspException: 
java.util.ArrayList
        javax.faces.webapp.FacesServlet.service(FacesServlet.java:121)
        
org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)

javax.faces.FacesException: javax.servlet.jsp.JspException: java.util.ArrayList
        
org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:421)
        
org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
        
org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:352)
        javax.faces.webapp.FacesServlet.service(FacesServlet.java:107)
        
org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)

Any idea ? thx


Reply via email to