123456789101112131415161718192021222324252627 |
- function RefreshActiveReportAction()
- {
- this.m_sAction = "RefreshActiveReport";
- }
- RefreshActiveReportAction.prototype = new CognosViewerAction();
- RefreshActiveReportAction.prototype.execute = function()
- {
- var viewerWidget = this.m_oCV.getViewerWidget();
- var activeReportIframe = dojo.byId(viewerWidget.getIFrameId());
- var srcUrl = activeReportIframe.src;
- activeReportIframe.src = srcUrl;
- viewerWidget.showLoading();
- };
|