2012-10-19 106 views

回答

0

只需在对话框中的保存按钮的操作方法中返回有效的导航结果。

E.g.

<p:commandButton value="Save" action="#{bean.save}" /> 

public String save() { 
    // ... 

    return "other.xhtml"; 
} 
相关问题