1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?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>
- <user>
- <nm/>
- <id/>
- <etc/>
- </user>
- </main>
- <hidden>
- <usrcbo>
- <nm/>
- <id/>
- <etc/>
- </usrcbo>
- </hidden>
- <init/>
- <send>
- <reqdata/>
- </send>
- </root>
- </instance>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../emr/commonweb/js/EMRCommon.js"/>
- <submission id="TRMRD00010" ref="/root/send/reqdata" method="post" mediatype="application/x-www-form-urlencoded" resultref="/root/hidden/usrcbo"/>
- </model>
- </xhtml:head>
- <xhtml:body pagewidth="315" pageheight="90">
- <caption id="cpt_title" class="tit_1" style="left:0px; top:0px; width:151px; height:14px; ">사용자 선택</caption>
- <button id="btn_x_ok" navindex="3" class="btn1_letter2" style="left:250px; top:57px; width:56px; height:22px; ">
- <caption>확인</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var tmp = model.getValue("/root/hidden/usrcbo["+ (cbo_id.focusindex + 1) +"]/id");
- opener.javascript.setParameter("result", tmp);
-
- model.close();
- ]]>
- </script>
- </button>
- <line id="line3" class="line_1" style="x1:0px; y1:15px; x2:315px; y2:15px; "/>
- <input id="ipt_usrnm" ref="/root/main/user/nm" navindex="1" class="input_search" style="left:75px; top:35px; width:100px; height:19px; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- setInputNodeCurText();
-
- var nm = model.getValue("/root/main/user/nm");
- model.makeValue("/root/send/reqdata/nm", nm);
-
- submit("TRMRD00010");
- cbo_id.select(0);
-
-
- ]]>
- </script>
- <script type="javascript" ev:event="onkeydown">
- <![CDATA[
- if(event.keyCode == "13") {
- model.setFocus("cbo_id");
- }
- ]]>
- </script>
- </input>
- <caption id="caption2" class="search_name" autoresize="true" style="left:10px; top:35px; width:65px; height:17px; ">이름 :</caption>
- <select1 id="cbo_id" ref="/root/main/user/id" navindex="2" appearance="minimal" style="left:180px; top:35px; width:125px; height:19px; ">
- <choices>
- <itemset nodeset="/root/hidden/usrcbo">
- <label ref="nm"/>
- <value ref="etc"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- var deptnm = model.getValue("/root/hidden/usrcbo["+ (cbo_id.focusindex + 1) +"]/etc");
- model.setValue("/root/main/user/etc", deptnm);
- model.refresh();
- ]]>
- </script>
- <script type="javascript" ev:event="onkeydown">
- <![CDATA[
- if(event.keyCode =="13"){
- btn_x_ok.dispatch("DOMActivate");
- }
- ]]>
- </script>
- </select1>
- <output id="opt_etc" ref="/root/main/user/etc" class="output_fix" style="left:75px; top:60px; width:160px; height:19px; "/>
- </xhtml:body>
- </xhtml:html>
|