2 Replies Latest reply on Aug 7, 2007 2:32 AM by tkalactomo

    rich datatable java.util.Set

      Does datatable support java.util.Set interface for value tag?

      I try with this example and dosen't work.

      public class Person {

      private String name;

      public String getName() {
      return name;
      }

      public void setName(String name) {
      this.name = name;
      }


      }

      @Name("backingBean")
      ...
      private Set persons;
      public Set getPersons() {
      return persons;
      }

      public void setPersons(Set persons) {
      this.persons = persons;
      }

      <r:dataTable value="#{backingBean.persons}" var="v">
      <r:column>
      <t:outputText id="outIdentValue" value="#{v.name}" />
      </r:column>
      </r:dataTable>


      Will this be included in new release or??
      Should I report as jira issue??????