1 Reply Latest reply on Nov 6, 2008 7:03 AM by konstantin.mishin

    issue with rich column sorting

      Hi every one
      I have issue with rich column sorting.
      If I try to use the rich column sorting with rich column group component I cant sort the columns.

      This is my sample code

      <rich:dataTable value="#{productList}" var="cap>
      <f:facet name="header">
      <rich:columnGroup>
      <rich:column >
       <h:outputText value="Product Name"/>
      </rich:column>
      <rich:column >
       <h:outputText value="Price"/>
      </rich:column>
      </rich:columnGroup>
      </f:facet>
      <rich:column sortBy="#{cap.productName}" >
       <h:outputText value="#{cap.productName}"/>
      </rich:column>
      <rich:column sortBy="#{cap.price}" >
       <h:outputText value="#{cap.price}"/>
      </rich:column>
      </rich:dataTable>
      

      And also I try with the sortBy property of rich column with in the column Group , still I got the same problem .I am using rich faces 3.2.2.SR1

      by
      Thiagu.m