After updating myFacesCore to 1.1.4 a selectOneMenu is not working anymore. I use tomahawk-1.1.3.

The entries of the select one menu are cleared after clicking an immediate link.

When I go back to myFacesCore 1.1.3 everything works fine.

 

Here is the jsp snippet:

<h:panelGroup>

   <h:outputText value="Quick Search"/>

   <t:selectOneMenu id="lastSearch" binding="#{SearchControllerBean.savedSearchesMenu}"/>

</h:panelGroup>

 

SearchControllerBean:

public UISelectOne getSavedSearchesMenu() {

            if (this.savedSearchesMenu==null){

                        this.populateSavedSearchesMenu(); 

            }

            return this.savedSearchesMenu;

}

 

I set a breakpoint into the above method.

savedSearchesMenu is a HtmlSelectOneMenu and it's childrenList contains two objects:

An UISelectItem and an UISelectItems with 5 SelectItems.

But these are not displayed anymore in the html. The dropdown is empty.

Any ideas?

Reply via email to