I have an input text and a button on the form.
I process event onchange for input text and onclick for button.
If the user changes the text and then click the button 2 events fired and sometimes they are processed simultaneously.
I would like onclick to be processed after onchange completed.
For this I use <a4j:queue name="myQueue"/> and mark events with <a4j:queue name="myQueue"/> like this:
<a4j:queue name="myQueue"/>
...
<h:inputText id="dateFromText" value="#{flowScope.fileSearchCriteria.fromDateStr}">
<a4j:support event="onchange" eventsQueue="myQueue" reRender="datePanel1"
actionListener="#{fileSearchCriteria.changeTextFromDate}"/>
</h:inputText>
....
<h:commandButton id="fileInSearch" action="fileInSearch"
value="#{resourceBundle.searchIn}" type="submit">
<a4j:support eventsQueue="myQueue" event="onclick"/>
</h:commandButton>
...
And as a result, onclick is processed not every time after onchange.