Bullet points are not showing in readonly format

Hi ,

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

The below article addresses the reported issue.

Bullets added using RTE does not display in the read-only mode (SA-59082)

Below style is overriding them. .gridDefault ul { list-style: none }

Please add the script from the article in your userworkform and let me know the provided solution is working

Resolution

Perform the following local-change:

Add the following to UserWorkForm:

<style> 

.rteReadOnlyWithoutTB ul { 

list-style-type: disc; 

} 

</style>

This issue is not seen in our Pega 8.x versions.

@MarijeSchillern Thanks for the reply. This issue was coming in 8.5.6 also for few users.

@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.

@MatheswaranRavi this is a different issue. Please log a new question for this as the original question was resolved a year ago.