1

我正在使用richfaces 3.3.3。我已经制作了选择列表,其中包含来自数据库的选择值。但它没有在选择列表的右侧显示这些值。这是我的代码

<rich:pickList  sourceListWidth="250" targetListWidth="250"
value="#{users.selectedValues}" >
   <f:selectItems value="#{users.availableValues}" />
</rich:pickList>

选定值是对象类型列表,可用值是选定项列表。请任何人帮助我谢谢阿西姆萨蒂

4

1 回答 1

3
<rich:pickList value= expression should return List/array you want to get on the RIGHT side (selected items)

<f:selectItems value= expression shall return WHOLE List/array (that is, both selected and unselected items)

这个对我有用

于 2014-04-28T10:16:20.913 回答