123456789101112131415161718192021222324252627282930 |
- // Licensed Materials - Property of IBM
- //
- // IBM Cognos Products: pps
- //
- // (C) Copyright IBM Corp. 2005, 2017
- //
- // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- /**
- * @private
- */
- D_ppesAdminProgress.F_Dialog_OnInit = function()
- {
- /**
- * @private
- */
- this.F_GetDlgItem("iProgressImg").src = G_HAL.M_sPath + 'hal/images/progress.gif';
- };
- /**
- * Set up that is required before the dialog becomes visible
- * @type void
- */
- D_ppesAdminProgress.F_Dialog_OnBeforeVisible = function()
- {
- var txtContainer = this.F_GetDlgItem("iProgressTxt");
- while (txtContainer.childNodes.length)
- txtContainer.removeChild(txtContainer.childNodes[txtContainer.childNodes.length - 1]);
-
- txtContainer.appendChild(document.createTextNode(this.m_sMessage));
- }
|