Support Article
Incorrect alignment of grid with more than 10 columns
SA-47145
Summary
Incorrect alignment of grid or tree grid with more than 10 columns.

Error Messages
Not Applicable.
Steps to Reproduce
Configure a grid or tree grid with more than 10 columns.
Root Cause
Overflow CSS property is not attached to the layout properly.
Resolution
Perform the following local-change:- For grid:
.layout-noheader-action_area > .layout-body {
overflow-y: auto;
background: white;
}
</style>
- For tree grid:
<style>
.layout.layout-outline.layout-outline-default > .layout-body{
overflow:auto;
background:white;
}
</style>
Published January 12, 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.