Support Article
Extra blank column is showing in tree grid
SA-32690
Summary
In a repeat-tree grid, one extra blank column is displayed. Issue is not reproducible with OOTB UI gallery.
The user attempted to solve this by creating a new tree grid. The issue then became replicable. This screenshot shows the changed presentation from 'Fill 100%' to Fixed and Fit to content.

Error Messages
Not Applicable
Steps to Reproduce
- Login to given URL/application
- Open Designer studio
- Launch Case Manager 7
- Click on Global search id
- Click on 'EOM' tab
- Got o the last layout.
Root Cause
A software use or operation error :
In the section OmLinesDetails there is a freeform layout that include the HTML fragment OmLineDetailsDashboardStyle. This fragment has the following block of CSS that is causing the issue observed:
th.standard_dataLabelRead.cellCont.gridCell {
width:90px !important;
word-wrap:normal;
}
Resolution
Perform the following local-change:
the user must remove this block of CSS or change the specificity of the CSS so that it applies to only the required section for example:
div[node_name='OmLinesDetails'] th.standard_dataLabelRead.cellCont.gridCell {
width:90px !important;
word-wrap:normal;
}
Published January 21, 2017 - 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.