4 Replies Latest reply on Jan 23, 2012 4:32 AM by ouaser

    <a4j:support> not woring in RichFaces 3.3.3?

    eurokey

      Hello,

       

      Today i downloaded the RichFaces 3.3.3 Library to migrate my Project to the JEE-6 Plattform. So far erverything is working great.

      But i get an Error Message erverywhere i use the <a4j:support> Component in my Application,

       

      The Error Message:

       

      javax.el.ELException: AjaxUpdate component not found for id: j_id_id72pc14

       

       

      If I remove all <a4j:support> Componentns erverything is working great. I used this Component to call multiple Methods with just one Button. Here is a Sample Code.

       

      Can anyone tell me how i can do this without the <a4j:support> Component?

       

      <h:commandButton value="Neu beginnen"  action="startover">
              <a4j:support event="onclick" action="#{bean1.method1}">
                  <a4j:support event="onsubmit"  action="#{bean2.method1}">
                      <a4j:support event="onsubmit" action="#{bean3.method1}">
                          <a4j:support event="onsubmit" action="#{bean4.method1}"/>
                      </a4j:support>
                  </a4j:support>
              </a4j:support>
      </h:commandButton>