Discussion
enonsys
IN
Last activity: 13 Nov 2024 5:58 EST
Embedding Pagelist in sections using JSP Tag - Manual Generated Section
Hi Team,
Whenever we send some mail, we usually hard code body or else we will use Correspondence.
Suppose I need to send some grid information in my Correspondence. we can create Correspondence rule inside that we can embed section.
Else, we can custom section to structure according to pagelist view.
<html> <head></head> <body style="margin:5px" border="1px"> <TABLE border="1" cellpadding="1" cellspacing="1" style="width:100%;"> <TR> <TH></TH> <TH>Healp desk Issues</TH> </TR>
<pega:forEach name=".<HelpDeskIssuelist>"> {This is pagelist property} <TR> <TD style="width: 20px; text-align:center;"> • </TD> <TD style="font-family: Arial; font-size: 11pt;"> <pega:reference name="$THIS.IssueDescription" /> (here, we have specify single value property) </TD> </TR> </pega:forEach > </TABLE> </body> </html>
Happy Learning :)
Regards,
Karthick
***Edited by Moderator Marissa to update General to Product***