1 Reply Latest reply on Sep 24, 2007 9:54 AM by ilya_shaikovsky

    Problem with dataTable & dataScroller

      Hi,
      I have a problem when I want to use a dataTable together with a dataScroller.
      Heres a code snippet:

      <a4j:form>
       <f:loadBundle basename="resources.application" var="msg" />
       ....
       <a4j:region id="all">
       <a4j:outputPanel id="mseItemsPanel" >
       <a4j:outputPanel rendered="#{mse.mseItemsVisible}">
       <rich:dataTable
       binding="#{mse.mseItemTable}"
       rows="#{mse.numberOfVisibleRows}"
       id="mseShow_mseItems"
       styleClass="mse_items"
       rowClasses="heading"
       value="#{mse.mseItems}"
       var="item">
       <f:facet name="header">
       <rich:columnGroup>
       <h:column> <h:outputText
       value="#{msg.continious_number_short}" />
       </h:column>
       </rich:columnGroup>
       </f:facet>
       <h:column>
       <h:inputText
       value="#{item.someValue}"/>
       </h:column>
       </rich:dataTable>
       <rich:datascroller
       binding="#{mse.dataScroller}"
       id="dsMseItems"
       for="mseShow_mseItems"
       />
       </a4j:outputPanel>
       </a4j:outputPanel>
       </a4j:region>
       ....
      </a4j:form>


      When I change now an item in the inputText-Field, scroll to the next page and then scroll back the inputField-Text isn't there any more...
      It worked well with 3.0.1, but it doesn't work with 3.1.
      Any ideas???