12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?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>
- <msg/>
- </main>
- </root>
- </instance>
- <script type="javascript">
- <![CDATA[
- var tid;
- function fClose()
- {
- window.close();
- }]]>
- </script>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- if(checkOpener()){
- model.setValue("/root/main/msg", opener.javascript.getParameter("msg"));
- model.refresh();
- }
- var tid = window.setinterval("fClose()", 1000);
- ]]>
- </script>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- </xhtml:head>
- <xhtml:body pagewidth="290" pageheight="100" style="margin-left:8; margin-top:8; margin-right:8; margin-bottom:8; ">
- <group id="grup_msg" style="left:0px; top:0px; width:275px; height:105px; border-color:#adceff; border-width:3px; border-style:solid; gradient:linear(0,0,100%,100%,white,#d7e7ff,1); ">
- <line id="line8" class="line_1" style="x1:2px; y1:67px; x2:267px; y2:67px; text-align:center; "/>
- <button id="button5" class="btn2_letter3" style="left:115px; top:78px; width:53px; height:19px; ">
- <caption>확 인</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- window.clearinterval(tid);
- window.close();
- ]]>
- </script>
- </button>
- <caption id="caption7" ref="/root/main/msg" style="left:2px; top:7px; width:265px; height:55px; font-size:16pt; font-weight:bold; text-align:center; "/>
- </group>
- </xhtml:body>
- </xhtml:html>
|