1 Reply Latest reply on Nov 6, 2006 6:59 AM by sherkan777

    t:dataTable & ScrollerActionEvent problem

    sherkan777

      ...

      if I remove:
      if(event instanceof org.apache.myfaces.custom.datascroller.ScrollerActionEvent) {

      I get: java.lang.ClassCastException:
      javax.servlet.ServletException: org.apache.myfaces.custom.datascroller.ScrollerActionEvent

      Most strange think is that, when I debug my application in variables event is shown as:
      event ScrollerActionEvent (id=5856)
      _phaseId PhaseId (id=5864)
      mPageIndex -1
      mScrollerfacet "fastf"
      source HtmlDataScroller (id=5858)




        • 1. Re: t:dataTable & ScrollerActionEvent problem
          sherkan777

          Sorry for that, I had problem with keyboard:
          Its conclusion of my post:


          Hi guys,

          I just start using tomahawk components and have some questions about dataScroller.

          Situation:
          I have a page that contain a t:dataTable and the corresponding t:dataScroller that do the navigation of the table.
          Problem is with my actionListener...here is source code:

          <t:dataTable id="questionsTable"
           styleClass="scrollerTable"
           headerClass="standardTable_Header"
           footerClass="standardTable_Header"
           rowClasses="standardTable_Row1,standardTable_Row2"
           columnClasses="standardTable_Column,standardTable_ColumnCentered,standardTable_Column"
           rows="#{questionsAction.maxRows}"
           var="question"
           value="#{questionList}"
           preserveDataModel="true"
           preserveSort="false"
           style="border: none; width: 100%;"
           cellpadding="0"
           cellspacing="0">
          
          <h:column>
           <f:facet name="header">
           <h:outputText value="#{messages['questionsAction.questionList.header.name']}"/>
           </f:facet>
           <s:link value="#{question.topic}" action="#{questionsAction.question}"/>
          </h:column>
          
          </t:dataTable>
          
          
          <h:panelGrid columns="1" styleClass="scrollerTable" columnClasses="standardTable_ColumnCentered">
           <t:dataScroller id="questionsScroller"
           for="questionsTable"
           fastStep="10"
           pageCountVar="pageCount"
           pageIndexVar="pageIndex"
           styleClass="scroller"
           style="border: none;"
           paginator="true"
           paginatorTableClass="paginator"
           paginatorMaxPages="5"
           immediate="true">
           <f:actionListener type="pl.fargo.expert.business.QuestionsAction"/>
          
          <f:facet name="first">
          <h:graphicImage value="/images/arrow-first.gif" style="border: none;" />
          </f:facet>
          
          <f:facet name="last">
          <t:graphicImage url="/images/arrow-last.gif" style="border: none;"/>
          </f:facet>
          
          <f:facet name="previous">
          t:graphicImage url="/images/arrow-previous.gif" style="border: none;"/>
          </f:facet>
          
          <f:facet name="next">
          <t:graphicImage url="/images/arrow-next.gif" style="border: none;"/>
          </f:facet>
          
          <f:facet name="fastforward">
          <t:graphicImage url="/images/arrow-ff.gif" style="border: none;"/>
          </f:facet>
          
          <f:facet name="fastrewind">
           <t:graphicImage url="/images/arrow-fr.gif" style="border: none;"/>
          </f:facet>
          </t:dataScroller>
          </h:panelGrid>
          


          ActionListener:
          public void processAction(ActionEvent event) throws AbortProcessingException
           {
           String current = event.getComponent().getId();
           FacesContext context = FacesContext.getCurrentInstance();
          
           if(event instanceof org.apache.myfaces.custom.datascroller.ScrollerActionEvent) {
           System.out.println("1: " + ((ScrollerActionEvent)event).getPageIndex());
           System.out.println("2: " + ((ScrollerActionEvent)event));
           System.out.println("3: " + ((ScrollerActionEvent)event).getScrollerfacet());
          
           }