【发布时间】:2011-03-23 07:14:49
【问题描述】:
在加载 JQuery 可以利用的数据后,PerformancePoint Dashboards 是否会发出任何事件。 document.ready 在性能点仪表板呈现之前触发,因此无济于事。我需要渲染性能点仪表板,以便我可以使用 JQuery 来操作仪表板。
【问题讨论】:
标签: jquery sharepoint-2010 performancepoint
在加载 JQuery 可以利用的数据后,PerformancePoint Dashboards 是否会发出任何事件。 document.ready 在性能点仪表板呈现之前触发,因此无济于事。我需要渲染性能点仪表板,以便我可以使用 JQuery 来操作仪表板。
【问题讨论】:
标签: jquery sharepoint-2010 performancepoint
我的同事 Chris E. 对程序集进行了深入研究,发现我们可以创建一个名为 NotifyBrowserOfAsyncUpdate 的函数,并且 PerformancePoint 会在加载后调用它。
函数 NotifyBrowserOfAsyncUpdate (elem) {
//在这里执行jquery
}
【讨论】: