1 2 Previous Next 18 Replies Latest reply on Jul 7, 2008 3:44 AM by ilya_shaikovsky Go to original post
      • 15. Re: rich:dataScroller not working when not in data table foo
        jchouinard

        Sorry I was just giving you the working exemple that i'm using. I'm updating the list from the input of a inputText with ajax support on key press.
        If you're using a a4j:commandButton try :

        <a4j:commandButton action="someaction" reRender="sc1,idoftable" />

        Where "someaction", the action you're doing, sc1, the id of your scroller and idoftable, the id of your table.

        • 16. Re: rich:dataScroller not working when not in data table foo
          jgreene

          Thanks, again. Yes, this is exactly what I've tried before, and it did not work for me. I'm doing another build right now, and will try carefully again and post my results.

          • 17. Re: rich:dataScroller not working when not in data table foo
            jgreene

            Ok, I've tried this again, and I get the same results. First, here are my code snippets:

            <a4j:commandButton reRender="accessLogTable,ds"
            action="#{accessFilterBean.loadAccessRecords}"
            value="Update" ajaxSingle="false" />
            
            ...
            
            <rich:datascroller id="ds" for="accessLogTable" align="center" renderIfSinglePage="false" />
            
            ...
            
             <rich:dataTable id="accessLogTable"
             value="#{accessFilterBean.accessRecords}"
             var="accRec"
             width="98%"
             rows="2"
             columnClasses="center"
             onRowMouseOver="this.style.backgroundColor='#F1F1F1'"
             onRowMouseOut="this.style.backgroundColor='#{a4jSkin.tableBackgroundColor}'"
             style="margin-top:4px;">
            ...
            
            
            


            Any other suggestions or help would be appreciated. There has to be something else obviously different between what I'm doing and what you're doing besides the a4j:commandButton. I've just got to find it. Thanks again.

            • 18. Re: rich:dataScroller not working when not in data table foo
              ilya_shaikovsky

              As far as I see you using 3.2.1 GA.. Could you please try 3.2.2 snapshot just for test?

              1 2 Previous Next