I have an environment where I use Liferay 6.2, Richfaces 4.3.2.Final, JSF 2.1 I am doing exactly what is in the rich face documentation
<rich:panelMenu>
<h:selectOneMenu id="id" valueChangeListener="#{bean.method}" style="background-color: white">
<f:selectItems value="#{bean.getList}"/>
<a4j:ajax event="valueChange" render="mainPanel" execute="@this"/>
</h:selectOneMenu>
</rich:panelMenu>
but the bean are not receiving the event, nothing happen, no erros, no warn, just is not called the "method" in the bean. I tried already to change the event to "change" instead "valueChange". the method signature is
public void method (ValueChangeEvent event)}