0

我按照richfaces http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=pickList&skin=blueSky中的示例创建了我的rich:pickList

我的问题是选定列表中没有信息显示。那么我怎样才能得到它呢?

My Edit.xhtml file:
<rich:pickList value="#{controller.selectedStudent}" var="f" sourceCaption="Available" targetCaption="Selected" listWidth="195px" listHeight="100px" orderable="true">
    <f:selectItems value="#{controller.studentList}" var="test" itemValue="#{test}" itemLabel="#{test.name}" />
</rich:pickList>
4

1 回答 1

0

我认为这是来自 Richfaces 选择列表的错误,因为所选项目(右)必须与左选择列表中的对象相同

  1. 创建 2 个列表:左选择列表和右选择列表。
  2. 在左选择列表中找到元素并将其放入右选择列表中。
于 2012-10-11T03:01:19.163 回答