我按照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>