123456789101112131415161718192021222324 |
- // 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.
- var D_ppesAdminProgress = new C_Dialog( "D_ppesAdminProgress", "dlgPPESAdminProgress", "hal/../fragments/ppesAdmin/dialogs/" );
- /**
- * Shows the dialog.
- * @param {HTMLElement} v_elVisualParent The element of the visual parent of this dialog.
- * @param {String} v_sMsg
- * @type void
- */
- D_ppesAdminProgress.F_Show = function( v_elVisualParent, v_sMsg )
- {
- /**
- * @private
- */
- this.m_sMessage = v_sMsg;
-
- this.M_fnSuper_Show(v_elVisualParent);
- };
|