3 Replies Latest reply on Nov 17, 2008 11:48 AM by hwoarang

    datascroller step controls with IE6 issue

    hwoarang

      Hi all !
      I tried hard to figure out why the step controls don't work with IE, but got not success...
      With Firefox works without any javascript error/warning.
      With IE, I got 'Error in Page', but no details...

      I tried to insert the datascrolls under table's facet foot... didn't work
      I tried datascrolls with and without facets too... didn't work

      I noticed this strange behavior under IE: after clicking the step control and then a column header, it works

      I'm using facelets x richfaces 3.2.2 x jsf 1.2.

      Here's my dataTable:

      <r:panel style="width:760px; height: 230px;">
       <h:panelGrid
       cellpadding="0"
       cellspacing="0"
       width="700"
       style="height: 70px;"
       rendered="#{ManterPessoa.mostrarGrid}">
       <r:dataTable
       value="#{ManterPessoa.lista}"
       var="item"
       sortMode="single"
       id="tablePessoas"
       rows="7"
       width="700"
       style="heigth: 700px;"
       align="center">
       <f:facet name="header">
       <h:outputText value="Registros encontrados" />
       </f:facet>
       <r:column
       sortBy="#{item.matricula}"
       width="10%">
       <f:facet name="header">
       <h:outputText value="Matricula" />
       </f:facet>
       <h:outputText value="#{item.matricula}" />
       </r:column>
       </r:dataTable>
       </h:panelGrid>
      </r:panel>
      <r:datascroller
       for="tablePessoas"
       maxPages="5"
       rendered="#{ManterPessoa.mostrarGrid}">
      </r:datascroller>
      


      Any ideas?
      Thank you in advance!

        • 1. Re: datascroller step controls with IE6 issue
          hwoarang

          Nobody having this issue ?
          I tested with 3.3 snapshot, 3.2.2-SR and got the same problem... even firebug Lite for IE dont throw nothing...

          :(

          • 2. Re: datascroller step controls with IE6 issue
            nbelaevski

            Hi,

            I couldn't reproduce the issue neither with IE6 nor with IE7. Can you please create a small runnable example reproducing the issue and upload it somewhere (e.g. to sendspace) so that I can get it, run and see the problem?

            • 3. Re: datascroller step controls with IE6 issue
              hwoarang

              Hi there!

              I decomposed my pages and discovery the component that caused all the trouble: my template.jspx had a tag inside my modalPanel that stoped IE to work with datascroller's step controls and to open my modal from 'oncomplete' event...

              Well... sorry for taking some time from anyone...
              The problem is resolved now, even the reason for the problem still unclear to me.

              Thank you all!