Question
Calling dynamic HTML with pega JSP tags content by referencing a clipboard property in Paragraph rule
I am passing a dynamic HTML content including Pega tags in a property. and referring it in a paragraph rule.
I used RichTextEditor format for the property that is referenced in Paragraph rule. By using it system is reading only the text part but not pega tags referenced within HTML
if my HTML has below content:
<div><span style="font-size: 10px;">This is a sample text <pega:reference name=".SampleClipboardText"></pega:reference> </span></div>
By using RichTextEditor system is not able to parse value for .SampleClipboardText.
Can anyone please help what am i missing here?
Hi Abhishekg,
InClude Label in dynamaic layout in section instead of rich text editor
Refer HTML in label
<pega:include name="Sample" type="RULE-OBJ-HTML"/>----> to refer HTML rule in label
Sample is the HTML rule
And include your code in HTML
<div><span style="font-size: 10px;">This is a sample text <pega:reference name=".SampleClipboardText"></pega:reference> </span></div>
See the page context as well once