/* *+------------------------------------------------------------------------+ *| Licensed Materials - Property of IBM *| IBM Cognos Products: Viewer *| (C) Copyright IBM Corp. 2013 *| *| US Government Users Restricted Rights - Use, duplication or *| disclosure restricted by GSA ADP Schedule Contract with IBM Corp. *| *+------------------------------------------------------------------------+ */ function RequestExecutedIndicator( cognosViewer) { if (cognosViewer) { RequestExecutedIndicator.baseConstructor.call( this, cognosViewer ); } }; RequestExecutedIndicator.baseConstructor = WorkingDialog; RequestExecutedIndicator.prototype = new WorkingDialog(); /** * returns the html for a very simple wait dialog with a wait icon and some text. */ RequestExecutedIndicator.prototype.renderHTML = function() { var waitPageHtml = ""; waitPageHtml += "
"; waitPageHtml += "
"; waitPageHtml += ""; waitPageHtml += "
"; waitPageHtml += "\"""; waitPageHtml += ""; waitPageHtml += RV_RES.GOTO_WORKING; waitPageHtml += "
"; waitPageHtml += RV_RES.RV_PLEASE_WAIT; waitPageHtml += "
"; return waitPageHtml; }; RequestExecutedIndicator.prototype.getContainerId = function() { return "CVWaitindicator" + this.getNamespace(); };