C_QanLog_FullView.js 851 B

1234567891011121314151617181920212223242526
  1. /****************************************************************************************************************************
  2. Licensed Materials - Property of IBM
  3. BI and PM: QFW
  4. © Copyright IBM Corp. 2005, 2010
  5. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. *****************************************************************************************************************************/
  7. function C_QanLog_FullView( iLog )
  8. {
  9. this.m_iLog = iLog;
  10. }
  11. C_QanLog_FullView.prototype.F_Init = function( v_divEPContainer )
  12. {
  13. var v_oLogDoc = G_QanApp.F_GetLogDoc( this.m_iLog );
  14. var v_nXmlLogDocRoot = v_oLogDoc.F_GetAsXMLDoc().documentElement;
  15. var v_sPlanHTML = v_nXmlLogDocRoot.transformNode( G_QanApp.F_GetXslDoc() );
  16. v_divEPContainer.innerHTML = v_sPlanHTML;
  17. }