how to add an existing page to a page list in an activity
E.g. Existing page P1, of class C.
A page list: K.pxResults, of same class C.
Now I want to add P1 to K.pxResults. I tried Property-Set:
Set K.pxResults() to P1, it does not work.
Thanks.
how to add an existing page to a page list in an activity
E.g. Existing page P1, of class C.
A page list: K.pxResults, of same class C.
Now I want to add P1 to K.pxResults. I tried Property-Set:
Set K.pxResults() to P1, it does not work.
Thanks.
@MaxonL16591286 Please page copy option. Refer the screen shot below
@Nadimuthu T Thanks, it works.
Actually, using "Property-Set Pag2.pxResults() to " should be able to add a page, because, we try
“Property-Set Pag2.pxResults() to ” in a loop under another page list, it works normally.
But
“Property-Set Pag2.pxResults() to Page1” does not work
I guess the key point is we are unable to tell Pega “Page1” is a page name. (Actually it’s handled as a class name by Pega, as the class of the new page, which is incorrect)
Also, as Pega know is a page, so it works.
So, do you have idea HOW we could tell Pega “Page1” is a page name?