Support Article
Export to PDF does not export complete data
SA-75809
Summary
A few columns of a report contain a large amount of data. However, complete data does not display on the columns. The Export to PDF does not export the complete data.
Error Messages
Not Applicable
Steps to Reproduce
- Open a report definition with a large number of columns containing a large amount of data
- Select the Export to PDF option. The PDF that is generated does not contain the complete data
Root Cause
A defect in Pegasystems’ code or rules.
Resolution
Perform the following local-change:
Add the below Cascading Style Sheets (CSS) to workform_pyReportingSkin:
table.gridTable[pl_prop="pyReportContentPage.pxResults"] {
table-layout: fixed;
}
table.gridTable[pl_prop="pyReportContentPage.pxResults"] th, table.gridTable[pl_prop="pyReportContentPage.pxResults"] td {
overflow-x: hidden;
text-overflow: ellipsis;
height: auto;
}
table.gridTable[pl_prop="pyReportContentPage.pxResults"] td .oflowDivM{
text-overflow: ellipsis;
}
div.gridDefault div.divCont {
white-space: normal;
}
div.gridDefault div.oflowDiv {
height: auto !important;
}
textarea {
white-space: pre-wrap;
}
Published March 22, 2019 - Updated October 8, 2020
Have a question? Get answers now.
Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.