p:打印机不起作用

时间:2016-05-03 12:30:10

标签: primefaces printing

我在Glassfish 4.1上使用PF 5.3。我需要打印机功能。但我甚至无法得到这个简单的例子。其他一切都很好。正在呈现以下示例中的按钮和图像,但p:printer无法正常工作。我做错了什么?可能是某种配置问题吗?

<h:body>
  <p:graphicImage id="img" value="/resources/img/test/datatable.png" />

  <h:form>
    <p:commandButton value="Print Image" type="button">
        <p:printer target="img" />
    </p:commandButton>
  </h:form>
</h:body>

1 个答案:

答案 0 :(得分:0)

您需要在页面中添加h:head才能加载javascript资源。这些是p:commandButtonp:printer工作所必需的。