
I have a Page with a Page (subpage) as one of its controls. This subpage is a listpart. I would like to change the contents of that subpage depending on the criteria entered by users in the Main Page. E.g., users may change the value on a Date field. Then I have a Page action on this. What I want to do is refresh the contents of listpart subpage which will affect the records being displayed on this listpart. Please help on how to make this happen. I have already created a function in the listpart to accept a new date and a function to refresh the listpart. I just don't know how to call from the main page and how to refresh its contents. Thank you much in advance.
*This post is locked for comments
I have the same question (0)Hello all, I figured it out.
CurrPage.<Name of the Page>.PAGE.<Function Name>(Parameters);
CurrPage.UPDATE;
whereby Function Name sets the necessary parameters in the listpart and runs the refresh of the page.