Question
HCL Ltd
IN
Last activity: 30 Sep 2024 8:11 EDT
How to Access value-List property in HTML/Paragraph/Correspondence
How to Access Value list property in HTML rule or Correspondence or Paragraph?
I have below piece of code in paragraph rule and refering that in HTML to generate PDF.
at run time it is failing for referring pyTextValue(1) value list.
How to Access Value list property in HTML rule or Correspondence or Paragraph?
I have below piece of code in paragraph rule and refering that in HTML to generate PDF.
at run time it is failing for referring pyTextValue(1) value list.
Please let me know how to refer value list property in HTML ? <table border="1" cellpadding="1" cellspacing="1" style="width:1200px;"> <tbody> <tr> <th><strong><span style="font-size:18px;"><span style="font-family:Century Gothic;">Covered Person</span></span></strong></th> <th><strong><span style="font-size:18px;"><span style="font-family:Century Gothic;">Minimum Amounts</span></span></strong></th> <th><strong><span style="font-size:18px;"><span style="font-family:Century Gothic;">Guaranteed Issue Amounts</span></span></strong></th> </tr> <tr> <td style="vertical-align:top;"><span style="font-family:Century Gothic;font-size:18px;"><pega:reference name="$THIS.pyLabel"></pega:reference> </span></td> <td style="vertical-align:top;"><span style="font-family:Century Gothic;font-size:18px;"><pega:reference name="$THIS.pyTextValue(1)"></pega:reference> </span></td> <td style="vertical-align:top;"><span style="font-family:Century Gothic;font-size:18px;"><pega:reference name="$THIS.pyTextValue(2)"></pega:reference> </span></td> </tr> </tbody> </table>