In Grid we are having a rich text format information that has the bullet points. When the grid is in edit mode it shows the bullet points but not showing in the read-only mode of the gird.
Any thoughts on how to resolve this because we need to generate the PDF document with this section later.
@Narender Lakshetty we encountered a similar problem. We were not able to see bullets in editable rich text as well as in read only rich text when the rich text is placed in a grid, expandable row.
we had to override below styles in a separate css file and add the css file to the required harness.
/* START- To display bullets and nested bullets for unordered list in a rich text editor inside a table expandable row*/
.cke_wysiwyg_div ul {
list-style-type: disc;
}
.cke_wysiwyg_div ul ul {
list-style-type: circle;
}
.cke_wysiwyg_div ul ul ul {
list-style-type: square;
}
.rteReadOnlyWithoutTB ul {
list-style-type: disc;
}
.rteReadOnlyWithoutTB ul ul {
list-style-type: circle;
}
.rteReadOnlyWithoutTB ul ul ul {
list-style-type: square;
}
/* END */
@MarijeSchillern We are using Pega 8.54 Same issue exist, Fixed the bullet points with the UserworkForm solution. But our numbering lines are not properly formatting in readonly. Attached screenshots. Help me for any sugesstion.