1234567891011121314151617181920212223242526 |
- /****************************************************************************************************************************
- Licensed Materials - Property of IBM
- BI and PM: QFW
- © Copyright IBM Corp. 2005, 2010
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- *****************************************************************************************************************************/
- function C_QanLog_FullView( iLog )
- {
- this.m_iLog = iLog;
- }
- C_QanLog_FullView.prototype.F_Init = function( v_divEPContainer )
- {
- var v_oLogDoc = G_QanApp.F_GetLogDoc( this.m_iLog );
- var v_nXmlLogDocRoot = v_oLogDoc.F_GetAsXMLDoc().documentElement;
-
- var v_sPlanHTML = v_nXmlLogDocRoot.transformNode( G_QanApp.F_GetXslDoc() );
-
- v_divEPContainer.innerHTML = v_sPlanHTML;
- }
|