Support Article
¿¿¿¿¿¿¿All columns in a grid does not display correctly
Summary
All columns in a grid does not display correctly in the Case Manager portal.
Error Messages
Not Applicable.
Steps to Reproduce
- Launch the application
- Configure a repeating grid
- Open a grid in the Case Manger portal
Root Cause
An issue in the custom application code or rules.
There are many columns in the grid and to view all the columns in the active screen at a time, certain styles are included. Due to this alignment of the data, the columns displays incorrectly.
Resolution
Perform the following local-change to display scroll bars for the grid and to avoid word wrap for the column text:Include the below style in UserWorkForm:
<style>
div.gridDefault div.oflowDivM{
white-space:nowrap !important; ----------- before the change this line of code was white-space:pre !important;
padding:inherit !important;
}
#PEGA_GRID_CONTENT{
overflow:auto !important;
}
.gridCell{
white-space:nowrap !important ------ to avoid word wrap;
}
</style>
Published July 23, 2018 - 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.