Reputation: 435
I want to know if theres a way/comand/DynamicAction/Code that refreshes all the reports in the page with a single DynamicAction?
Thanks in advance
Upvotes: 1
Views: 2395
Reputation: 5035
Create a single JavaScript action the executes the following
$('.refreshme').trigger('apexrefresh');
And apply the refreshme
class to all the regions you'd like to refresh
Upvotes: 3
Reputation: 142705
How about removing dynamic action and submitting the page once the item is changed? Submit will force all reports to refresh.
Upvotes: 1