12 Replies Latest reply on Feb 25, 2010 7:37 AM by tyemy

    Problem with rich: columns - Filter

      Good morning!

      I have a dynamic datatable and I use the Columns. But even through the value of FilterBy does not filter!
      And I can not pass the id by concatenating the index ..

      Use the version 3.3.2, because I was told that the problem could be in 3.3.1
      Here is my code


      <rich:dataTable id="dtAtendimento" value="#{CadastroAtendimentoTecnico.listaAtendimento}" var="atendimento">
         
      <rich:columns index="index" value="#{CadastroAtendimentoTecnico.listaCampos}" var="column" filterBy="#{column.nomeAtributo}" filterEvent="onKeyUp">
             
      <f:facet name="header">
                 
      <h:outputText value="#{column.label}"/>
             
      </ f: facet>
             
      <h:outputText value="#{atendimento[column.nomeAtributo]}"/>
         
      </ rich: columns>
      </ rich: dataTable>

       

      Can anyone help me please?