1 Reply Latest reply on Aug 30, 2007 10:45 AM by shimonl97

    DataFilterSlider

      Hi everyone,

      I have used DataFilterSlider in my coding.
      But its not working properly.
      I have attached my coding.
      Can you please help me to overcome the issue.

      <a4j:form id="form1" reRender="table-body" ajaxSubmit="true" ignoreDupResponses="true" requestDelay="500">
       <a4j:region id="stat1">
      <a4j:outputPanel id="slider-body">
      
       <rich:dataFilterSlider for="prodList"
       forValRef="makeList.list[pro.tblProductsCollection]" filterBy="getPrice"
       manualInput="true" onSlide="true" onChange="true"
       storeResults="true" trackStyleClass="track" width="200px"
       styleClass="slider-container" startRange="1000" endRange="20000"
       increment="1000" rangeStyleClass="range" trailer="true"
       trailerStyleClass="trailer" handleStyleClass="handle"
       handleValue="1000" id="slider_test"></rich:dataFilterSlider>
      
       </a4j:outputPanel>
      
      <a4j:outputPanel id="table-body">
       <rich:dataTable width="483" id="prodList" rows="10" columnClasses="col"
       value="#{makeList.list[pro.tblProductsCollection]}" var="category">
       <h:column>
       <h:outputText value="#{category.price}" />
       </h:column>
      </rich:dataTable>
       </a4j:outputPanel>
      </a4j:region>
      </a4j:form>


      please help me

      by
      Thiagu

        • 1. Re: DataFilterSlider

          Is there a reason why not :
          <a4j:form id="form1" reRender="table-body" ajaxSubmit="true" ignoreDupResponses="true" requestDelay="500">
          <a4j:region id="stat1">
          <a4j:outputPanel id="slider-body">

          <rich:dataFilterSlider for="prodList"
          forValRef="makeList.list[pro.tblProductsCollection]" filterBy="getPrice"
          manualInput="true" onSlide="true" onChange="true"
          storeResults="true" trackStyleClass="track" width="200px"
          styleClass="slider-container" startRange="1000" endRange="20000"
          increment="1000" rangeStyleClass="range" trailer="true"
          trailerStyleClass="trailer" handleStyleClass="handle"
          handleValue="1000" id="slider_test"></rich:dataFilterSlider>

          </a4j:outputPanel>
          </a4j:region>
          </a4j:form>
          <a4j:outputPanel id="table-body">
          <rich:dataTable width="483" id="prodList" rows="10" columnClasses="col"
          value="#{makeList.list[pro.tblProductsCollection]}" var="category">
          <h:column>
          <h:outputText value="#{category.price}" />
          </h:column>
          </rich:dataTable>
          </a4j:outputPanel>