I want to pre-charge a selectMultiMenu with values I already have in the application.
For example:
<b:panelGrid colSpans="2,2,8">
<h:outputLabel value="Traffic light color" />
<b:selectMultiMenu value="#{semaphoreBean.color}" >
<f:selectItems value="#{semaphoreBean.colors}" var="c" itemValue="#{c}" itemLabel="#{c}"/>
</b:selectMultiMenu>
</b:panelGrid>
if var color = "green, red"
before than I load the page, I don't see in my selectMultiMenu 2 items selected.
¿What do I have to do to pre-load that field with those values?