Has anybody ever seen the behavior where the actionListener (or action for that matter) are not being called for a4j:commandLink or a4j:support?

What is the magic???

The code snippets are the following as examples:

<a4j:commandLink id="serviceAddButton" ajaxSingle="true" actionListener="#{SessionBean.serviceAddActionListener}" reRender="ordersPG,commandButtons"> <h:graphicImage id="addServiceButton" value="images/other/add-16x16.gif" style="border-style:none;" width="16" height="16" alt="#{a4j_bundle.add_service}" /> <f:param id="serviceAddIdx" name="serviceIdx" value="#{SessionBean.servicesTable.rowIndex}"/>
</a4j:commandLink>

and

<h:selectOneMenu id="endDayMenu" value="#{SessionBean.endDate.day}">
   <f:selectItems value="#{SessionBean.endDate.dayItems}" />
<a4j:support event="onchange" ajaxSingle="true" actionListener="#{SessionBean.changeDateActionListener}" reRender="dateTimesDT,commandButtons" />
</h:selectOneMenu>


I am re-rendering lots of things: panelGroups, dataTables, outputTexts, etc.

There has to be something fundamental that I am not doing. What could it be? *Any* ideas?

Thanks for your help!

Reply via email to