7 Replies Latest reply on Oct 14, 2009 9:43 AM by evejeba

    Sorting and aligning within <rich:column>

    evejeba

      I have posted my problem with the alignment of h:column in the seam users forum http://seamframework.org/Community/AlignmentOfHcolumn

      I am not able to sort the field when i use <rich:column>. When i add the below code it says

      "class org.richfaces.component.html.HtmlDataTable (id="personList")
      did not find parent form."

      Code:

      <rich:dataTable id="personList"
      var="_person"
      value="#{personList.resultList}"
      rendered="#{not empty personList.resultList}">
      <rich:column sortBy="#{_person.firstName}">
      <f:facet name="header">FirstName</f:facet>
      <h:outputText id="name" value="#{_person.firstName}">
      </rich:column>
      </rich:dataTable>

      What changes do i have to make in order to sort the field and to left align the contents and the header of the table.