【发布时间】:2019-05-24 17:16:45
【问题描述】:
我正在尝试使用 PrimeFaces 打印组件在对话框内打印 div,如下所示:
1- Page.xhtml
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui" template="/WEB-INF/templateTest.xhtml">
<ui:define name="title">Test Page</ui:define>
<ui:define name="viewname">Test Page</ui:define>
<ui:define name="content">
<h:form id="form">
<div>
<div>
<div>
<p:commandButton value="Print" type="button" onclick="PF('printDialog').show();" />
<p:dialog resizable="true" dir="rtl" closeOnEscape="true" modal="true" id="printDialog"
header="print" widgetVar="printDialog" width="1400" height="500"
position="center top" style="height: 600px;max-height: 600px;overflow: hidden;margin-top:100px;">
<p:commandButton value="print" type="button" icon="ui-icon-print" style="display:block;margin-bottom: 20px;width:150px;">
<p:printer target="printDiv" />
</p:commandButton>
<h:panelGroup layout="block" id="printDiv" style="direction:rtl;width:95%;margin-top:50px;">
<h:panelGroup id="letterTitle">
<p dir="rtl"><strong><span style="font-size:18px"><span style="font-family:times new roman,times,serif"> detail <span id="peaseUponHim" style="margin-right:100px;"> detail </span> </span></span></strong></p>
<p dir="rtl"><strong><span style="font-size:18px"><span style="font-family:times new roman,times,serif"> detail </span></span></strong></p>
<p dir="rtl"><span style="font-size:18px"><span style="font-family:times new roman,times,serif">detail2 </span></span></p>
<p dir="rtl"><span style="font-size:18px"><span style="font-family:times new roman,times,serif">detail</span></span></p>
<p dir="rtl" style="text-align:center"><span style="font-size:18px"><span style="font-family:times new roman,times,serif"><span style="font-family:times new roman,times,serif">greeting</span></span></span></p>
<p dir="RTL" style="margin-left:0in; margin-right:0in; text-align:left"><strong><span style="font-size:18px"><span style="font-family:Calibri,sans-serif"><span style="font-family:"PT Bold Heading"">detail </span></span></span></strong></p>
<p dir="RTL" style="margin-left:0in; margin-right:0in; text-align:left"><strong><span style="font-size:18px"><span style="font-family:Calibri,sans-serif"><span style="font-family:"PT Bold Heading"">detail</span></span></span></strong></p>
</h:panelGroup>
<p:panelGrid style="width:800px;margin:0 auto">
<f:facet name="header">
<p:row>
<p:column style="font-weight: bold;" colspan="4">title</p:column>
</p:row>
</f:facet>
<p:row>
<p:column style="font-weight: bold;">col1</p:column>
<p:column colspan="3" style="font-weight: bold;"></p:column>
</p:row>
<p:row>
<p:column style="font-weight: bold;width:100px;">col2</p:column>
<p:column style="font-weight: bold;"></p:column>
<p:column style="font-weight: bold;width:100px;">col3</p:column>
<p:column style="font-weight: bold;"></p:column>
</p:row>
<p:row>
<p:column style="font-weight: bold;">col4</p:column>
<p:column style="font-weight: bold;"></p:column>
<p:column style="font-weight: bold;">col5</p:column>
<p:column style="font-weight: bold;"></p:column>
</p:row>
<p:row>
<p:column style="font-weight: bold;">col6</p:column>
<p:column style="font-weight: bold;"></p:column>
<p:column style="font-weight: bold;">col7</p:column>
<p:column style="font-weight: bold;"></p:column>
</p:row>
<p:row>
<p:column style="font-weight: bold;">col8</p:column>
<p:column style="font-weight: bold;"></p:column>
<p:column style="font-weight: bold;">col9</p:column>
<p:column style="font-weight: bold;"></p:column>
</p:row>
<p:row>
<p:column style="font-weight: bold;">col10</p:column>
<p:column style="font-weight: bold;"></p:column>
<p:column style="font-weight: bold;">col11</p:column>
<p:column style="font-weight: bold;"></p:column>
</p:row>
</p:panelGrid>
<p:panelGrid style="width:800px;margin:0 auto;margin-top:50px;">
<f:facet name="header">
<p:row>
<p:column style="font-weight: bold;" colspan="7">table2</p:column>
</p:row>
</f:facet>
<p:row>
<p:column rowspan="2" style="font-weight: bold;">col1</p:column>
<p:column colspan="2" style="font-weight: bold;text-align:center">col2</p:column>
<p:column rowspan="2" style="font-weight: bold;">col3</p:column>
<p:column rowspan="2" style="font-weight: bold;">col4</p:column>
<p:column rowspan="2" style="font-weight: bold;">col5</p:column>
<p:column rowspan="2" style="font-weight: bold;">col6</p:column>
</p:row>
<p:row>
<p:column style="font-weight: bold;text-align:center">col1 group1</p:column>
<p:column style="font-weight: bold;text-align:center">col1 group2</p:column>
</p:row>
<p:repeat value="#{myBean.myList}" varStatus="loopVar" var="materialPrint">
<p:row>
<p:column style="font-weight: bold;">#{loopVar.index+1}</p:column>
<p:column style="font-weight: bold;">#{materialPrint.arabicName}</p:column>
<p:column style="font-weight: bold;">#{materialPrint.englishName}</p:column>
<p:column style="font-weight: bold;">#{materialPrint.commercialName}</p:column>
<p:column style="font-weight: bold;">#{materialPrint.code}</p:column>
<p:column style="font-weight: bold;">#{materialPrint.code2}</p:column>
<p:column style="font-weight: bold;">
<h:outputText value="#{materialPrint.quantity}">
<f:convertNumber pattern="#0.#" />
</h:outputText>
(#{materialPrint.quantityWords})
</p:column>
</p:row>
</p:repeat>
</p:panelGrid>
<p:panelGrid style="width:800px;margin:0 auto;margin-top:50px;">
<f:facet name="header">
<p:row>
<p:column style="font-weight: bold;" colspan="2">table3</p:column>
</p:row>
</f:facet>
<p:row>
<p:column style="font-weight: bold;width:250px;">col1</p:column>
<p:column style="font-weight: bold;"></p:column>
</p:row>
<p:row>
<p:column style="font-weight: bold;">col2</p:column>
<p:column style="font-weight: bold;"></p:column>
</p:row>
<p:row>
<p:column style="font-weight: bold;">col3</p:column>
<p:column style="font-weight: bold;"></p:column>
</p:row>
<p:row>
<p:column style="font-weight: bold;">col4</p:column>
<p:column style="font-weight: bold;"></p:column>
</p:row>
</p:panelGrid>
<p dir="rtl"><span style="font-size:16px"><span style="font-family:times new roman,times,serif">notes here </span></span></p>
</h:panelGroup>
</p:dialog>
</div>
</div>
</div>
</h:form>
</ui:define>
</ui:composition>
2- templateTest.xhtml
<!DOCTYPE html>
<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:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<h:head>
<f:facet name="first">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
</f:facet>
<title><ui:insert name="title">PrimeFaces California</ui:insert></title>
<h:outputScript name="js/nanoscroller-rtl.js" library="california-layout" />
<h:outputScript name="js/layout.js" library="california-layout" />
<h:outputStylesheet name="css/layout-blue.css" library="california-layout" />
<ui:insert name="head"/>
</h:head>
<h:body styleClass="main-body">
<div class="layout-wrapper #{guestPreferences.menuLayout == 'overlay' ? 'layout-wrapper-overlay-sidebar': null}">
<div class="layout-main">
<div class="route-bar">
<div class="route-bar-breadcrumb">
<i class="fa fa-home"></i> <span>/ </span>
<ui:insert name="viewname" />
</div>
</div>
<div class="layout-main-content">
<ui:insert name="content"/>
</div>
</div>
</div>
</h:body>
</html>
我正在使用 primefaces California 主题,它的 css 在这里:
我的问题是打印时我得到一个额外的空白页。我尝试了以下链接中的所有解决方案,但没有成功:how to avoid extra blank page at end while printing?
更新: 我注意到当我删除模板 css 文件时:layout-blue.css 问题消失了,所以那里有一种冲突的风格,但我不知道它可能是哪一种?
【问题讨论】:
-
您是否尝试将要打印的内容包装在 p:outputPanel 中?
-
我在Chrome中点击了你生成的html上的打印,没有多余的空白页(至少打印预览中没有)。
-
@YvonneAburrow:然后你打印整个文档/页面,而不是像此处的 panelGroup 这样的“片段”。
-
你能做一个minimal reproducible example(一个完整但最小的页面,如果你删除它,删除页面中所有不能“使它工作”的东西)
-
@Kukeltje,完成,我更新了帖子,希望当前的例子清楚
标签: css jsf printing primefaces