I have created this valueChangeListener for a selectOneMenu in JSF:
<a4j:region>
<a4j:repeat>
<label class="select">
<h:selectOneMenu id="onlyThis" value="#{bean.prio}"
valueChangeListener="#{bean.prioChangeListener}" >
<f:selectItems value="#{bean.prioSelectItems}" />
</h:selectOneMenu>
</label>
</a4j:repeat>
</a4j:region>
I don´t understand the reason, why this valueChangeListener won´t be executed, if an another value was select in ths xhtml page.
Is there a mistake in my code? The Beans are declared in the right way