maybe I am missing something very basic.
I have a p:autocomplete with an p:ajax event="itemSelect" child and forceSelection="true" attribute. When the user selects a value from the list I can update parts of the page from the itemSelect event. That works all fine. Now, I want also an page update when the user types something in the field. I would like to handle this as an unselect. Unfortunatedly I see no way to update when the complete-method is called. Even stuff like
final RequestContext requestContext = RequestContext.getCurrentInstance();
requestContext.update("content_form:table");
in the complete-method does not help.
Any ideas? I hope I expressed myself in a comprehensive way.