4

尝试打开一个新选项卡以接受从 bean 生成的 pdf 文件。

与 h:commandbutton 一起使用,没有使用 p.commandbutton 打开的选项卡。

试图将 onclick 和 oncomplete="window.open('_blank') 放在 p:commandbutton 上,它会打开一个新选项卡,但它没有获取 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>
4

1 回答 1

7

尝试设置

ajax="false"

在你的p:commandButton,这样它应该表现得像h:commandButton

于 2012-10-30T21:21:42.030 回答