Display Pagelist in Correspondence in Pega

Hi All,

Trying to display Page list in correspondence in PEGA. we have page list results in clipboard only we have to display it in UI.

Currently we are using Constellation UI and there is no Section concept in Constellations.

Please let us know possible approach.

Thank you.

@SivakumarV17164857

Use the source only mode which allows you to customize it to loop through each page.

this link should help more to loop through the data page results.

@SivakumarV17164857

Use the Source only mode and use this code to display pagelist.

    <pega:forEach name="pyWorkPage.PageList">
    
    <li><p:r n="$THIS.propertyID"></p:r></li>
    
    </pega:forEach>
    
    </ul>
    

    But if its needed in table format please refer attachment for the code.

    Table HTMl.txt (1.58 KB)

@pichn

Ha ha ha, giving exactly how to do it kills the joy of learning but it’s ok.