Based on this Im implementing a rich:autocomplete with a dynamic list to the autocomplete. What i want to do next is, when the user edits this field to update another field based on its value.
I've found various links and references declaring this is a bug, that it triggers when the form in used is submitted, workaraounds but from at least a year ago. here, here and here.
Fragment of my code:
<rich:autocomplete value="#{cotizacionBean.currentOpcionEditable.sumaAsegurada}" style="width:100px;" id="sumaAseguradora"
required="true" validatorMessage="#{msgs['global.etiqueta.sumaAseguradoraRequerida']}"
autocompleteMethod="#{cotizacionBean.getAutocompleteListSumaAsegurada}"
valueChangeListener="#{cotizacionBean.sumaAseguradaModificada}"
requiredMessage="#{msgs['global.etiqueta.sumaAseguradoraRequerida']}" converterMessage="#{msgs['global.etiqueta.sumaAseguradoraRequerida']}">
</rich:autocomplete>
And my bean:
public void sumaAseguradaModificada(){
System.out.println("entro sumaAseguradaModificada");
}
So my questions are two: is this already fix? How can i do it?