12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>보고서미리보기</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- </main>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
-
- //brw_report.document.parentWindow.opener = htmlwindow;
- ]]>
- </script>
- </model>
- <script type="javascript">
- <![CDATA[
- /**
- * @group :
- * @ver : 2006.12.20
- * @by : 이상준
- * @---------------------------------------------------
- * @type : function
- * @access : public
- * @desc : 예약여부에 따라서 발송일시 활성화/비활성화
- * @return :
- * @---------------------------------------------------
- */
- function loadReport(url)
- {
- //openLoadingBar("보고서");
- brw_report.Document.write("<div align='center' style='position: absolute; top: 45%; left: 42%; '><bold><font face='돋움체' color='464646' size='5'>보고서 로딩중...</font></bold></div>");
- brw_report.Navigate(url);
- }
-
- function brw_report::DocumentComplete(pDISP, sURL)
- {
- //closeLoadingBar();
- brw_report.document.parentWindow.opener = htmlwindow;
- }
-
- ]]>
- </script>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- </xhtml:head>
- <xhtml:body style="background-color:#F0F0F0; margin-left:0; margin-top:0; margin-right:0; margin-bottom:0; ">
- <browser id="brw_report" src="about:blank" AddressBar="false" Visible="true" Left="0" FullScreen="true" MenuBar="false" StatusBar="false" Resizable="false" style="left:1%; top:1%; width:99%; height:99%; "/>
- </xhtml:body>
- </xhtml:html>
|