D_ppesAdminPDFPaginationDialog.js 959 B

12345678910111213141516171819202122232425262728
  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_ppesAdminPDFPaginationDialog = new C_Dialog( "D_ppesAdminPDFPaginationDialog", "dlgPPESAdminPDFPagination", "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_ppesAdminPDFPaginationDialog.F_Show = function( v_elVisualParent, v_sTitle, v_oDialogListener, v_sCurrentValue, v_sDefaultValue )
  18. {
  19. /**
  20. * @private
  21. */
  22. this.m_sCurrentValue = v_sCurrentValue;
  23. this.m_sDefaultValue = v_sDefaultValue;
  24. this.M_fnSuper_Show( v_elVisualParent, v_oDialogListener, v_sTitle );
  25. };