我想知道是否可以在<ice:selectOneMenu>
组件中选择多个项目,或Icefaces中是否有任何其他组件允许用户从列表中选择多个值。
提前致谢
答案 0 :(得分:0)
您可以使用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>