1 Reply Latest reply on Nov 17, 2010 3:11 PM by ginni

    a4j support with seam-excel

    ginni

      I got the seam excel thing working wonderfully in my JSF with rich:dataTable and a command button.
      Seam 2.2.1 CR1


      Then, I realized that the


      <a4j:support 
      event="onRowDblClick" 
      action="#{authorizationListManager.editAuthorization}"
      onclick="#{rich:component('progressDialog')}.show()"
      onsubmit="setCursorWait();"
      oncomplete="setCursorDefault(); #{rich:component('progressDialog')}.hide()"/>
      



      no longer works. :(  I really need that to work. Is this a bug?
      No error in the console, no javascript error warning, nothing. Just nothing happens.

        • 1. Re: a4j support with seam-excel
          ginni

          Again, fixed it myself. :) Posting in case anyone else runs into this.
          The dataTable was already be inside a form.  When included from outer 
          xhtml there should already be an h:form that is wrapping each page.  
          Problem occured because there were two forms. Removed the one I'd added to support excel and it works.