当我尝试在 XHTML 中使用 js 打开新浏览器 window 时,window 没有打开
when I try to open a new browser window using js in XHTML, the window does not open
我需要在新的 window 中显示报告,当我单击停靠栏项目时,报告已生成,但 window 未打开。
XHTML 代码:
<p:layoutUnit position="south" size="60">
<p:dock>
<p:menuitem value=".PDF" icon="/images/dock/pdf.png"
action="#{RelatorioPlanoAquisicaoBIDMB.btnGerarRelatorioOnClick()}"
onclick="this.disabled=true" ajax="false"
oncomplete= "this.disabled=false; javascript:ResourceNews('relatorios/#{RelatorioPlanoAquisicaoBIDMB.chaveArquivo}-relatorio_plano_aquisicao.pdf','750','550','no')"
update="growl" />
<p:menuitem value="Sair" icon="/images/dock/sair.png"
action="#{RelatorioPlanoAquisicaoBIDMB.btnSairOnClick()}"
onclick="this.disabled=true" />
</p:dock>
<p:ajaxStatus style="margin:15px;margin-right:25px;margin-bottom:0px; text-align:right">
<f:facet name="start">
<p:graphicImage value="../images/gifs/ajax-loader2.gif" />
</f:facet>
</p:ajaxStatus>
JavasCript代码:
function ResourceNews(url, l, a, s){
var x = parseInt((screen.width-l)/2);
var y = parseInt((screen.height-a)/2);
var win = window.open(url,'','width='+l+',height='+a+',scrollbars='+s);
win.moveTo(x,y);
}
打开新 window 的方法必须在 "onComplete" 中调用,因为 window 只有在报表准备就绪时才需要打开。但是它打不开,只有在 "onclick" 时才会打开,但在这种情况下系统找不到 .pdf,因为它还没有完成生成。
知道如何解决这个问题吗?
正如 PrimeFaces User Guide 所说,oncomplete
是在 ajax 请求完成时执行的处理程序。
您已指定 ajax="false"
。这就是处理程序未被调用的原因 - 没有 ajax 请求,只是一个普通的 POST.
另一个问题是 #{RelatorioPlanoAquisicaoBIDMB.chaveArquivo}
值在单击菜单项之前是未知的。这可以通过使用 org.primefaces.context.RequestContext
在 action 方法中呈现 js 函数调用来解决。
public void btnGerarRelatorioOnClick() {
/* ... */
RequestContext.getCurrentInstance().execute("ResourceNews('relatorios/" + getChaveArquivo() +
"-relatorio_plano_aquisicao.pdf','750','550','no');"
我需要在新的 window 中显示报告,当我单击停靠栏项目时,报告已生成,但 window 未打开。
XHTML 代码:
<p:layoutUnit position="south" size="60">
<p:dock>
<p:menuitem value=".PDF" icon="/images/dock/pdf.png"
action="#{RelatorioPlanoAquisicaoBIDMB.btnGerarRelatorioOnClick()}"
onclick="this.disabled=true" ajax="false"
oncomplete= "this.disabled=false; javascript:ResourceNews('relatorios/#{RelatorioPlanoAquisicaoBIDMB.chaveArquivo}-relatorio_plano_aquisicao.pdf','750','550','no')"
update="growl" />
<p:menuitem value="Sair" icon="/images/dock/sair.png"
action="#{RelatorioPlanoAquisicaoBIDMB.btnSairOnClick()}"
onclick="this.disabled=true" />
</p:dock>
<p:ajaxStatus style="margin:15px;margin-right:25px;margin-bottom:0px; text-align:right">
<f:facet name="start">
<p:graphicImage value="../images/gifs/ajax-loader2.gif" />
</f:facet>
</p:ajaxStatus>
JavasCript代码:
function ResourceNews(url, l, a, s){
var x = parseInt((screen.width-l)/2);
var y = parseInt((screen.height-a)/2);
var win = window.open(url,'','width='+l+',height='+a+',scrollbars='+s);
win.moveTo(x,y);
}
打开新 window 的方法必须在 "onComplete" 中调用,因为 window 只有在报表准备就绪时才需要打开。但是它打不开,只有在 "onclick" 时才会打开,但在这种情况下系统找不到 .pdf,因为它还没有完成生成。
知道如何解决这个问题吗?
正如 PrimeFaces User Guide 所说,oncomplete
是在 ajax 请求完成时执行的处理程序。
您已指定 ajax="false"
。这就是处理程序未被调用的原因 - 没有 ajax 请求,只是一个普通的 POST.
另一个问题是 #{RelatorioPlanoAquisicaoBIDMB.chaveArquivo}
值在单击菜单项之前是未知的。这可以通过使用 org.primefaces.context.RequestContext
在 action 方法中呈现 js 函数调用来解决。
public void btnGerarRelatorioOnClick() {
/* ... */
RequestContext.getCurrentInstance().execute("ResourceNews('relatorios/" + getChaveArquivo() +
"-relatorio_plano_aquisicao.pdf','750','550','no');"