1 2 Previous Next 17 Replies Latest reply on Dec 14, 2009 5:51 AM by ilya_shaikovsky Go to original post
      • 15. Re: rich:scroller with scrollable dataTable
        ilya_shaikovsky
        <a4j:outputPanel layout="overflow">

         

        should be layout="block"

         

        and add css class for that panel with css overflow declaration.

        • 16. Re: rich:scroller with scrollable dataTable
          ipraveenjain

          no use , horizontal bar is disabled. but vertical is there and it is working

          <a4j:outputPanel layout="block" styleClass="scrollchk">
                                  <rich:extendedDataTable height="150px"
                                      sortMode="false"
                                      value="#{mainBind.customWizard.clstrDtl.extendedDevices}"
                                      binding="#{mainBind.customWizard.clstrDtl.dtdeviceInfoCol}"
                                      selection="#{mainBind.customWizard.clstrDtl.deviceInfoSelction}"
                                      var="device" id="devicesTable"
                                      enableContextMenu="false"
                                      selectionMode="multiple">

           

          style class is

           

          .scrollchk
          {
          width:150px;
          height:150px;
          overflow:scroll;
          }

          • 17. Re: rich:scroller with scrollable dataTable
            ilya_shaikovsky
            because you not defined width for table itself
            1 2 Previous Next