Support Article
Word Wrap does not work in report definition
SA-23993
Summary
Word wrap does not work in a report definition rule that contains a header.
Error Messages
Not Applicable
Steps to Reproduce
- Create a report definition with four words in the heading.
- Run the report.
- Observe the words are not wrapped.
Root Cause
A defect in Pegasystems’ code or rules.
Resolution
Perform the following local-change:
Include the following CSS in workform_pyReportingSkin:
table.gridTable[pl_prop="pyReportContentPage.pxResults"] {
table-layout: fixed;
}
table.gridTable[pl_prop="pyReportContentPage.pxResults"] th {
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;
}
Published June 9, 2016 - 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.