4 Replies Latest reply on Jul 21, 2009 4:25 AM by nbelaevski

    extendedDataTable selection binding not working as expected

      I've this table code and expect that the the selection binding is automatically updated on server side. That doesn't happen since the bean property is not set (setter is not called).

      
      
      
       <rich:extendedDataTable id="table_user" binding="#{users.table}"
       value="#{users.users}" var="it" rows="10" height="300px"
       enableContextMenu="false" selectionMode="multi"
      
       selection="#{users.selection}">
      ...
      


      It works through adding
      <a4j:support event="onselectionchange"></a4j:support>

      to the table.

      But of course I want it working the official way (as in Live Demo ScrollDataTable example - no a4j:support tag needed)

      Is something missing from the extendedDataTable tag or is it a bug?

      I'm using 3.3.1 release.