ActionListener is called multiple times (Bug?) - Mojarra 2.1.3
I have the following button: <h:commandButton disabled="#{mybean.searching}" binding="#{mybean.searchButton}" actionListener="#{mybean.searchForLicenses}" value="Search" /> When I debug I see that the actionListener is called twice first, then three times, next click four times and so on. It seems like on every reload the actionListener is registered one more time. I'm using Mojarra 2.1.3 (also tried 2.0.6) and Tomcat 7 with IceFaces. The binding is done that way: private javax.faces.component.UICommand searchButton; public void setSearchButton(UICommand searchButton) { this.searchButton =