2 Replies Latest reply on May 10, 2011 5:08 PM by ilya_shaikovsky

    Button in row of ExtendedDataTable?

    ibstmt

      In a DataTable, I can put a command button on a row, and react to row selections accordingly:

       

      <rich:column>

      <a4j:commandButton

           value="Do Something"

           ajaxSingle="true"

           oncomplete="#{rich:component('myModal')}.show()">         

           <f:setPropertyActionListener value="#{item}" target="#{myManager.selectedItem}" />

           <f:setPropertyActionListener value="#{row}" target="#{myManager.selectedRow}" />

      </a4j:commandButton>

      </rich:column>

       

      This works perfectly. However, I can't do the same in an ExtendedDataTable. The above code has no effect. I always have to use the a4j:support tag, with an "onselectionchange" event, to capture the selected row. That works, but my action has to be either in a menu, or in a button outside the table. I'd occasionally like to put an action button or icon inside the table, at the end of each row, rather than outside the table. Is this possible?