我在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>
答案 0 :(得分:0)
您需要在页面中添加h:head
才能加载javascript资源。这些是p:commandButton
和p:printer
工作所必需的。