Support Article
Horizontal scroll bar appears on listview
SA-9570
Summary
User has a section which renders a listview. When the flow is executed, the list view shows horizontal and vertical scroll bar, the content of the list view perfectly fits under the container but the horizontal scroll bar is redundant. After filter options are applied, the list contains two rows, horizontal and vertical scroll bars disappear. As the content of the listview does not require a horizontal scroll bar at all and it disappears after the filter conditions are applied, user wants the horizontal scroll bar to be removed completely.
Error Messages
Not Applicable
Steps to Reproduce
1. Use an OOTB listview (for example, BrowseOperators).
2. Create a section and use the above list view.
3. Create a flow action and a flow.
4. Run the flow and apply the filter criteria.
Root Cause
After the filter condition is applied, the table container CSS does not change to hidden, it remains in auto mode.
Resolution
The below Local-change resolve the issue:
<style>
#embeddedlvbody .lvTableContainer{
overflow-x: hidden !important;
}
</style>
Published June 12, 2015 - 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.