Support Article
Table Personalization removes ability to scroll horizontally
SA-87714
Summary
On adding the Table Personalization option, the horizontal scroll bar does not display when multiple columns are present (some of the columns are hidden).
Error Messages
Not Applicable
Steps to Reproduce
Add the Table Personalization option.
Root Cause
The Template Grid wrapper DIV element with 'PEGA_GRID_CONTENT' ID and its child node with 'gridBody_right' ID, has the Overflow property value set to Hidden. Hence, the content that overflows, is hidden. The value must be set to Visible (default value of Overflow) to allow Scroll for the overflown element.
Resolution
Perform the following local-change:
Add the below style to the UserWorkForm,
div.gridDefault div#PEGA_GRID_CONTENT, div.gridDefault div#gridBody_right {
overflow: visible;
}
This feature is implemented in Pega Platform 8.4.
Published July 10, 2020 - 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.