Support Article
Border styles does not display for Column layout
SA-52868
Summary
Border style configured using a Skin rule does not display for Column Repeat. Column repeat grid is configured in a dynamic layout.
Error Messages
Not Applicable.
Steps to Reproduce
- Configure a column repeat grid in a section
- Navigate to the presentation tab of the grid and use the out-of-the-box OOTB or custom style sheet. These styles are present in the Skin rule
- Execute the use case that displays the column repeat grid
Root Cause
Custom skin style is overridden.
Resolution
Perform the following local-change:Add the below style in UserWorkForm rule:
<style>
div.TEST table.TEST tr td{
border: 2px blue solid !important;
}
</style>
table.TEST.repeatReadWrite.repeatReadWriteRowColRepeat{
border: 2px blue solid !important;
}
Here, TEST is the style name. Use the developer tool of the browser to identify the correct div element.
Post changes, the column repeat grid displays as below:
Published May 11, 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.