Scout/HowTo/3.8/Refreshing a table page
Scout |
Wiki Home |
Website |
Download • Git |
Community |
Forums • Blog • Twitter • G+ |
Bugzilla |
Bugzilla |
This how-to describes how to refresh a table page
There are situations when a reload of table page data needs to be triggered when it is activated (e.g. the PersonTable when the user changes from the "root" person table to a company specific person table in the minicrm project).
Steps
- Select the page
- In the Scout Object Properties under Advanced Operations add the following method:
execPageActivated() - Click on the newly added method to show the source code. Call reloadPage()
@Override protected void execPageActivated() throws ProcessingException { reloadPage(); }