<h:panelGrid columns="2">
<h:outputText value="Search Results List"/>
<p:commandButton value="Add user" process="@this" styleClass="btn-primary" style=" margin-bottom: 20px;margin-left: -80px;width:75px;" action="#{testBean.addUser(user)}"/>
<p:orderList styleClass="resultBox" style="color: #263F6A;" var="user" value="#{testBean.contacts}"
itemLabel="#{user.firstName}" itemValue="#{user.firstName}" controlsLocation="none">
</p:orderList>
</h:panelGrid>
我正在使用primefaces订单列表,我已经设法从后端获取订单列表,现在我从订购者中选择了一个项目,并且必须将其发送到服务器端进行查询..我已经发布了上述代码来执行此操作。我面临问题,因为用户对象为空。如何从订单列表中发送选定的项目并通过服务器发送它也请向我解释过程=“@ this”。我正在使用primefaces 3.4.2和JSf2 websphere8。
提前致谢