Support Article
Unable to scroll horizontally in a report
SA-72411
Summary
After applying the below code, unable to scroll horizontally in a report.
<style>
DIV.harnessContent {
overflow-x: hidden !important;
}
</style>
Error Messages
Not Applicable
Steps to Reproduce
- Install Pega Sales Automation for Financial Services (FS) with some data.
- Add the below CSS code in the UserWorkForm rule:
<style>
DIV.harnessContent {
overflow-x: hidden !important;
}
</style>
- Open a report with multiple columns.
Root Cause
A defect in Pegasystems’ code or rules.Resolution
Perform the following local-change:
Add the below CSS in UserWorkForm rule.
<style>
DIV.harnessContent{
width:100 vh !important;
}
Div#HARNESS_CONTENT.harnessContent.harness-content-workarea-view {
overflow-x:hidden !important;
}
</style>
Published February 23, 2019 - Updated December 2, 2021
Have a question? Get answers now.
Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.