My <h:selectOneListbox /> works well when it contains more than one element, but a problem occurs when there is only one single item: the listbox get displayed as a dropdown list, and my nested <f:ajax event="valueChange" /> won’t get triggered. Any idea why?
My <h:selectOneListbox /> works well when it contains more than one element, but a
Share
Finally, I just added a
sizeattribute to the<h:selectOneListbox />tag with a value of2and it solved the problem:Hope that could help
;)