1 Reply Latest reply on Jan 16, 2009 8:16 AM by ilya_shaikovsky

    actionListener changed in 3.3.0GA

    buttau

      I have detected some behavior changes concerning support and actionparameter - tags since RF 3.3.0GA

      And i don't know if it is bug or bug fix?

      i have a following code:

      <h:selectBooleanCheckbox id="strTitelCheckbox" value="#{backingBean.vorgangTANZuordnung[rkv].ysnTitel}">
       <a4j:support actionListener="#{backingBean.applyValueActionListener}" event="onclick" reRender="lastcol, buttoncol" onsubmit="onRowClick(this);" >
       <a4j:actionparam name="propertyName" value="strTitel" assignTo="#{backingBean.propertyName}" />
       <a4j:actionparam name="valueFromIndex" value="#{rkv}" assignTo="#{backingBean.valueFromIndex}" />
       </a4j:support>
      </h:selectBooleanCheckbox>
      


      there is an actionlistener which is called if user clicks on a checkbox, and ...

      in richfaces-api-3.3.0-20081026 is backing bean set-method for property "propertyName" called before call of {backingBean.applyValueActionListener}

      and with 3.3.0GA is backing bean set-method for property "propertyName" called after call {backingBean.applyValueActionListener}

      what is the right behavior?