关闭primefaces对话框并重定向主页面

时间:2014-05-27 08:13:14

标签: jsf redirect jsf-2 primefaces

在按钮的提交处理程序中,我有时必须关闭p:dialog并立即执行主页的重定向。我试过下面的代码

RequestContext.getCurrentInstance().closeDialog(id);
FacesContext.getCurrentInstance().getExternalContext()
        .redirect("../quote/select.xhtml?prospectid=" + id);

这包含在submit()中,通过简单的commandButton

调用
<p:commandButton value="#{msg.common_save}" action="#{bean.submit}" />

不幸的是,这会在对话框中进行重定向,并且不会关闭对话框本身。 仅使用第一行会关闭我的对话框,但当然我仍然需要重定向我的页面。

有什么方法可以做我正在寻找的东西吗?

2 个答案:

答案 0 :(得分:1)

好的如果我告诉你你正在通过动作属性调用你的bean。这不是我们想要的方式。请检查以下示例:

<p:dialog widgetVar="dlg" modal="true" resizable="false" header="Dialog">
    <!-- Dialog controls here -->
    <!-- ... -->

    <h:panelGroup>
    <p:commandButton value="Close and redirect" actionListener="#{bean.closeListener}"  action="/main" />
    <p:commandButton value="Just close" onclick="PF('dlg').hide()"/>
    </h:panelGroup>
</p:dialog>

'actionListener'属性用于执行此事件后面的任何代码。 'action'属性用于设置对话框结果 - 这可以是.xhtml页面名称(可以省略扩展),也可以是EL表达式引用bean方法返回String。 在上面的示例中,rediretcion将转到位于WebContent root中的main.xhtml页面。

通常,首先执行'actionListener',然后对结果进行评估,并将jsf视图更改为已评估的页面。

答案 1 :(得分:1)

如果你仍然在寻找答案,那么我认为我已经做了你需要的同样的事情。 请原谅我的格式错误

这是editor.xhtml文件的代码:

 <!DOCTYPE html>

  <html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:f="http://java.sun.com/jsf/core"
  xmlns:h="http://java.sun.com/jsf/html"
  xmlns:p="http://primefaces.org/ui"
  xmlns:x="http://java.sun.com/jsf/composite">
 <f:view>

<h:head>
    <title>Editor and dialog!</title>
</h:head>
<h:body>
    <h:panelGrid columns="1" cellpadding="5">

        <p:commandButton value="Edit Content" type="button" onclick="dlg2.show();" style="color:green;font-size:10px;"/>


    </h:panelGrid>

    <p:dialog header="Modal Dialog" widgetVar="dlg2" modal="true" >
        <h:outputText value="Edit Content here" style="color:green"/>
        <h:form>
        <p:growl id="message" showDetail="true" />
        <p:editor value="#{editorBean.value}" widgetVar="editContent" ></p:editor>
        <p:commandButton value="Publish"  action="editor?faces-redirect=true" update="message" onclick="dlg2.hide();">
            <p:confirmDialog header="Confirmation" message="Are you sure?" icon="ui-icon-alert" />
        </p:commandButton>


        </h:form>
    </p:dialog>   
    <div >
        <h:outputText  value="#{editorBean.value}"></h:outputText>
    </div>


</h:body>
  </f:view>
 </html>

这是我将其命名为EditorBean.java

的bean类的代码
package com.dev;

import javax.faces.bean.ManagedBean;
import javax.faces.application.FacesMessage;
import javax.faces.bean.ManagedBean;
import javax.faces.context.FacesContext;

import org.primefaces.event.CloseEvent;


@ManagedBean(name="editorBean")
public class EditorBean {  

  private static String value;  
  //private static String outValue;


public EditorBean() {


}

public void addMessage(String summary, String detail) {
    FacesMessage message = new FacesMessage(FacesMessage.SEVERITY_INFO, summary, detail);
    FacesContext.getCurrentInstance().addMessage(null, message);
}


public String getValue() {  
    System.out.println("getValue()"+value);
    return value;  
}  



public void setValue(String value) { 
    System.out.println("setValue()"+value);
    addMessage("System Error", value+"! Please try again later.");
    this.value = value;  
    //getOutValue();
}

/*public String getOutValue() {
    this.outValue = value;
    System.out.println("getOutValue()"+outValue);
    return outValue;
}*/




}