D_UIProfileSource.js 695 B

123456789101112131415161718192021
  1. /*
  2. IBM Confidential
  3. OCO Source Materials
  4. IBM Cognos Products: uipe
  5. (C) Copyright IBM Corp. 2014
  6. The source code for this program is not published or otherwise divested of its trade secrets, irrespective of what has been deposited with the U.S. Copyright Office.
  7. */
  8. var D_UIProfileSource = new C_Dialog( "D_UIProfileSource", "dlgClipboardHelper", "dialogs/" );
  9. D_UIProfileSource.F_Show = function( v_oListener, v_sTitle, v_bCopyToClipboard, v_sText )
  10. {
  11. this.m_sText = v_sText ? v_sText : "";
  12. this.m_bCopyToClipboard = v_bCopyToClipboard;
  13. this.M_fnSuper_Show( null, v_oListener, v_sTitle );
  14. };
  15. D_UIProfileSource.F_GetValue = function()
  16. {
  17. return this.F_GetDlgItem( "ta" ).value;
  18. };