Are there any events that PerformancePoint Dashboards emit after loading data that can be leveraged by JQuery. The document.ready fires before the performancepoint dashboard has rendered so that doesn't help. I need for the performancepoint dashboard to render so I can then use JQuery to manipulate the dashboard.
Asked
Active
Viewed 912 times
1 Answers
3
A co-worker of mine, Chris E., dug into the assemblies and found that we could create a function called NotifyBrowserOfAsyncUpdate and that PerformancePoint would call it after loading.
function NotifyBrowserOfAsyncUpdate (elem) {
//execute jquery in here
}

user281254
- 161
- 1
- 2
- 6
-
This could be very helpful. Thanks for the research! – Nathan DeWitt Feb 16 '11 at 21:37