>how do you handle the problem that a selectone menu wants a Collection >of SelectItem >for the menu entries...?
<h:selectOneMenu
styleClass="selectOneInput"
value="#{Coach.unit.team}"
id="team"
rendered="#{not Coach.retrieveState}"
converter="TeamConverter" >
<f:selectItems value="#{Coach.team}" />
</h:selectOneMenu>
Coach.unit.team is a Team object and Coach.getTeam returns a
list of Teams, wrapped w/ UIComponents of course.
Dennis Byrne

