我现在挣扎了整整一个星期而且没有工作。用户对象不会更新... 这是重要的xhtml部分:
<p:dataTable id="usersTable" var="user" value="#{userBean.allUsers}">
<p:ajax event="rowToggle" listener="#{userBean.onRowToggle}" update=":form_user_management:tabView_viewUsers:messages" />
<f:facet name="header">
User
</f:facet>
<p:rowExpansion>
<h:panelGrid id="display" columns="2" cellpadding="10" style="width:300px;"
styleClass=" ui-widget-content grid">
<p:panel id="panel" header="Benutzer bearbeiten">
<p:messages id="msgs"/>
<h:panelGrid columns="3" >
<h:outputLabel for="firstname" value="Firstname: *" />
<p:inputText id="firstname" value="#{user.userFirstName}" required="true" label="Firstname">
<f:validateLength minimum="2" />
</p:inputText>
<p:message for="firstname" display="icon"/>
<h:outputLabel for="surname" value="Surname: *" />
<p:inputText id="surname" value="#{user.userLastName}" label="Surname" required="true">
<f:validateLength minimum="2" />
<p:ajax update="msgSurname" event="keyup" />
</p:inputText>
<p:message for="surname" id="msgSurname" display="icon"/>
<p:commandLink id="changepw" value="Passwort ändern" onclick="dlg.show()" title="Passwort ändern">
<f:setPropertyActionListener value="#{user}" target="#{userBean.currentUser}" />
</p:commandLink>
<p:commandButton ajax="true" id="btnUpdateUser" value="Update" update=":form_user_management @all" actionListener="#{userBean.updateUser(user)}"/>
<p:commandButton ajax="true" id="btnDeleteUser" value="Delete" update=":form_user_management" actionListener="#{userBean.deleteUser(user)}"/>
</h:panelGrid>
</p:panel>
</h:panelGrid>
</p:rowExpansion>
当我点击“保存”时,展开的行会消失,但不显示新值,Java方法“userBean.updateUser(user)”只获取用户对象的旧值。
UserBean的负责人是:
@Named
@SessionScoped
public class UserBean implements Serializable {
SessionScoped来自javax.enterprise.context
我也尝试使用旧的@ManagedBean,但这也没有用。我认为问题出在xhtml文件和ajax中... 哦,我使用和其他模板的东西。
使用Primefaces 3.4和Glassfish 3 +
完整UserBean:http://pastebin.com/yQCgiM4E 完整的Xhtml:http://pastebin.com/19TWt3Dv(第110行是有趣的事情)
答案 0 :(得分:0)
好的,我的队友通过添加来解决问题
return action.getActionEvent()+"?faces-redirect=true";
在action属性中,如<h:commandButton action="page1?faces-redirect=true" value="Page1" />
这解决了ajax-delay-shit