jsf target =“_ blank”无法使用primefaces命令按钮

时间:2012-10-30 20:15:52

标签: jsf-2 primefaces

尝试打开新选项卡以接受来自bean的生成的pdf文件。

使用h:commandbutton,没有用p.commandbutton打开标签。

尝试在p:commandbutton上放置onclick和oncomplete =“window.open('_ blank'),它会打开一个新选项卡,但它不会获取pdf并获得”找不到错误404“。

使用primefaces-3.1

由于

  <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'
     'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>

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


    <h:head>
        <h:outputStylesheet library="base" name='jquery-ui-1.8.16.custom.css' />
    </h:head>
    <h:form target="_blank">
      <p:commandButton value="Run" action="#{bean.createReport}"  />
    </h:form>

    </html>

1 个答案:

答案 0 :(得分:6)

尝试设置

ajax="false"

p:commandButton上,这样就应该像h:commandButton

一样