123456789101112131415161718192021 |
- /*
- IBM Confidential
- OCO Source Materials
- IBM Cognos Products: uipe
- (C) Copyright IBM Corp. 2014
- 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.
- */
-
- var D_UIProfileSource = new C_Dialog( "D_UIProfileSource", "dlgClipboardHelper", "dialogs/" );
- D_UIProfileSource.F_Show = function( v_oListener, v_sTitle, v_bCopyToClipboard, v_sText )
- {
- this.m_sText = v_sText ? v_sText : "";
- this.m_bCopyToClipboard = v_bCopyToClipboard;
- this.M_fnSuper_Show( null, v_oListener, v_sTitle );
- };
- D_UIProfileSource.F_GetValue = function()
- {
- return this.F_GetDlgItem( "ta" ).value;
- };
|