123456 |
- // Licensed Materials - Property of IBM
- // IBM Cognos Products: cchl
- // (C) Copyright IBM Corp. 2003, 2016.
- // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- D_PromptDateTime.F_GetParameterValues=function(){return this._cLF;};D_PromptDateTime.F_Dialog_OnBeforeVisible=function(){switch(this._cHG1){case D_PromptDateTime.K_eDlgTypeDateOnly:this._cNI=new C_PromptDate(this.F_GetDlgItem("divPromptDateTime"), this._cMI, this, this._cHC);break;case D_PromptDateTime.K_eDlgTypeTimeOnly:this._cNI=new C_PromptTime(this.F_GetDlgItem("divPromptDateTime"), this._cMI, this, this._cHC);break;case D_PromptDateTime.K_eDlgTypeDateTime:this._cNI=new C_PromptDateTime(this.F_GetDlgItem("divPromptDateTime"), this._cMI, this, this._cHC);break;}this.F_GetDlgItem( "divMsg" ).style.display = this._c3T1?"":"none";this.F_GetDlgItem("divMsg").innerText=this._c3T1;};D_PromptDateTime.F_Dialog_OnAfterHide=function(){this._cIC=null;this._cMI=null;this._cNI.F_Detach();delete this._cNI;};D_PromptDateTime.F_PromptControl_OnOverallInvalidState=function(_c5M){this.F_SetButtonEnabled("btnOK", false);};D_PromptDateTime.F_PromptControl_OnOverallValidState=function(_c5M){this.F_SetButtonEnabled("btnOK", true);};D_PromptDateTime.F_OnOK=function(){this._cLF=this._cNI.F_GetParameterValues();this.M_fnSuper_OnOK();};
|