문제

I would like to know if it is possible to select multiple items in <ice:selectOneMenu> component, or is there any other component in Icefaces which allows a user to select multiple values from a list.
Thanks in advance

도움이 되었습니까?

해결책

You could use ice:selectManyMenu

<ice:selectManyMenu value="#{bean.selectedValues}" >
<f:selectItem itemValue="Value1" itemLabel="Value1" />
    <f:selectItem itemValue="Value2" itemLabel="Value2" />
    <f:selectItem itemValue="Value3" itemLabel="Value3" />
</ice:selectManyMenu>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top