jboss - autocomplete select listener -


i use method in rich:autocomplete component same way valuechangelistener, problem cannot submit form in order listener fired, that's why wanted ask how intercept event in order execute listener in backing bean. have tried this:

<rich:autocomplete id="autocompleteoficina"    value="#{agenciadm.oficinaseleccionada}" converter="entityconverter"   autocompletelist="#{suggestionentitiesdm.availableentitieslist(suggestionentitiesdm.oficina)}"   var="oficina" fetchvalue="#{oficina.label}" showbutton="true">   <a4j:ajax event="change" listener="#{oficinacontroller.empresasearchselectedlistener}"></a4j:ajax>   <rich:column>     <h:outputtext value="#{oficina.label}" />   </rich:column> </rich:autocomplete> 

i have tried select event, no 1 executed listener, why not fired?.

could please enclose inside

<h:form></h:form> 

also please check listener method signature in backing bean


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -