Hi Peter,
Does your bean implement the method public void
processValueChange(javax.faces.event.ValueChangeEvent event) {...} ?
and
Is the form rendered in the HTML output ? May be missing <h:form> ?
regards
Marco
--
http://www.lenses-price-comparison.com
http://www.perfume-price-comparison.com
Peter Rabing schrieb:
Hi,
I am trying to install a changelistener on a combo box. But unfortunately,
nothing happens, no listener is called.
The box is rendered correctly, and has the correct values on click it is
submitted, but the listener is never called and no exception occurs:
<tc:selectOneChoice valueChangeListener="#{mybean.processValueChange}"
onchange="submit() ">
<f:selectItems value="#{mybean.featureValue_1}" />
</tc:selectOneChoice>
My Bean implements the ValueChangeListener interface.
I guess I am missing something essential here ..
Thanks for your help.
Peter