在按钮的提交处理程序中,我有时不得不关闭我的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}" />
不幸的是,这会在对话框中进行重定向,而不会关闭对话框本身。只使用第一行确实关闭了我的对话框,但当然,我仍然需要重定向我的页面。
有什么方法可以做我正在寻找的?
Ok,如果我理解对了,你是在通过action属性调用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页面名(可以省略扩展名),也可以是引用bean方法返回String的EL表达式。在上面的例子中,重定向将转到位于WebContent根目录下的main.xhtml页面。
一般情况下,首先执行'actionListener',然后评估结果,jsf视图更改为评估页面。
如果你还在寻找答案,那么我想我已经做了同样的事情,你需要。对不起,格式不好
下面是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>
这是bean类的代码我将其命名为editorbean。java
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;
}*/
}