Scout/HowTo/5.0/Refreshing a table page
< Scout | HowTo | 5.0
Revision as of 06:13, 9 April 2015 by Ssw.bsiag.com (Talk | contribs) (Created page with "{{ScoutPage|cat=HowTo 5.0}} 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 activa...")
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(); }