D_ppesAdminTitleDialog.js 868 B

1234567891011121314151617181920212223242526
  1. // Licensed Materials - Property of IBM
  2. //
  3. // IBM Cognos Products: pps
  4. //
  5. // (C) Copyright IBM Corp. 2005, 2017
  6. //
  7. // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  8. var D_ppesAdminTitleDialog = new C_Dialog( "D_ppesAdminTitleDialog", "dlgPPESAdminTitle", "hal/../fragments/ppesAdmin/dialogs/" );
  9. /**
  10. * Shows the dialog.
  11. * @param {HTMLElement} v_elVisualParent The element of the visual parent of this dialog.
  12. * @param {String} v_sTitle
  13. * @param {I_DialogListener} v_oDialogListener
  14. * @param {String} v_sCurrentValue
  15. * @type void
  16. */
  17. D_ppesAdminTitleDialog.F_Show = function( v_elVisualParent, v_sTitle, v_oDialogListener, v_sCurrentValue )
  18. {
  19. /**
  20. * @private
  21. */
  22. this.m_sCurrentValue = v_sCurrentValue;
  23. this.M_fnSuper_Show( v_elVisualParent, v_oDialogListener, v_sTitle );
  24. };