selectItem « Facelets « JSF Q&A





1. Two collections in f:selectItems - possible?    stackoverflow.com

I have two vectors:

private Vector<City> allCities;
private Vector<Address> allAddresses;
A City-object contains a cityId, postcode and cityname, an Address-object an addressId, street and cityId. Vector allCities can contain more Cities than used by ...

2. Reducing size of HTML output by sharing f:selectItems between h:selectOneMenu?    stackoverflow.com

Got a page with ui:repeat bound to a list collection like below:

<ui:repeat value="#{myBean.products}" var="product">
    ....
    ....
    <h:selectOneMenu id="type" required="true" value="#{product.category}">
   ...

3. JSF 2 not recognizing itemLabel and itemValue attributes    stackoverflow.com

I have the following dropdown in a Facelets page:

<h:selectOneMenu value="#{contactBean.selectedContact}" converter="#{contactConverter}">
    <f:selectItems value="#{contactsHolder.contacts}" var="contact"
    itemLabel="#{contact.firstName}" itemValue="#{contact}" />
</h:selectOneMenu>
The problem is, no matter what I put in ...