123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <!--
- * 제 목 : SMLPC01600_세포단축키등록.xrw
- * 설 명 : 세포단축키등록 화면
- * 설 계 자 : (주)에이씨케이 - 황상미
- * 작 성 자 : (주)에이씨케이 - 황상미
- * 작 성 일 : 2007.01.12
- * 수정이력 :
- * 기 타 :
- -->
- <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.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/>
- <model id="model1">
- <instance id="instance1">
- <root>
- <main>
- <hotkeycnts>
- <hotkeylist>
- <hotkeycd/>
- <hotkeynm/>
- <exmpcd1/>
- <exmpnm1/>
- <exmpcd2/>
- <exmpnm2/>
- <exmpcd3/>
- <exmpnm3/>
- <exmpcd4/>
- <exmpnm4/>
- <exmpcd5/>
- <exmpnm5/>
- </hotkeylist>
- </hotkeycnts>
- <hotkeyinfo>
- <hotkeycd/>
- <hotkeynm/>
- <exmpcd1/>
- <exmpnm1/>
- <exmpcd2/>
- <exmpnm2/>
- <exmpcd3/>
- <exmpnm3/>
- <exmpcd4/>
- <exmpnm4/>
- <exmpcd5/>
- <exmpnm5/>
- <useyn/>
- <fstrgstdt/>
- <fstrgstrid/>
- <lastrgstdt/>
- <lastrgstrid/>
- </hotkeyinfo>
- </main>
- <send>
- </send>
- <init>
- </init>
- <hidden>
- <useynflag>1</useynflag>
- <refflag>1</refflag>
- <refval/>
- <cdupdtflag>1</cdupdtflag>
- </hidden>
- </root>
- </instance>
- <bind id="detl_initialinfo" ref="/root/main/detlinitialcnts"/>
- <bind id="bind_output1" ref="/root/main/detlinitialcnts"/>
- <submission id="TRLPP001" mediatype="application/x-www-form-urlencoded" method="post"/>
- <!--TEST-->
- <submission id="reqGetInitialData" action="http://localhost:8080/LPC00100A.jsp" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/init"/>
- <!--- END-->
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../lis/commonweb/js/LPZ001.js"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- fExeInitialize();
- ]]>
- </script>
- <!-- public Script Start -->
- <script type="javascript">
- <![CDATA[
-
- /* @group : 세포단축키등록 화면
- * @ver : 2007.01.12 (CMCDEV-0001)
- * @by : 황상미(ACK)
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 화면초기화 함수
- */
- function fExeInitialize(){
-
- model.removeNodeset("/root/main/cnsltcnts/cnsltlist");
- model.removeNodeset("/root/main/cnsltinfo");
-
- model.setValue("/root/hidden/cdupdtflag", "1");
-
- fExeControlChng("false");
- }
-
- /* @group : 세포단축키등록 화면
- * @ver : 2007.01.12 (CMCDEV-0001)
- * @by : 황상미(ACK)
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 조회/수정/신규 컨트롤 사용여부 변경 함수
- * iGbn : 컨트롤 활성화 여부 true/false
- */
- function fExeControlChng(iGbn){
-
- var sGbn = "";
-
- if(iGbn == "true"){
- sGbn = "false";
- }else{
- sGbn = "true";
- }
-
- var vCtrIptArr = new Array(); //입력 컨트롤
- var vCtrSelArr = new Array(); //선택 컨트롤
-
- vCtrIptArr[0] = document.controls("ipt_hotkeycd"); //단축키코드 입력박스
- vCtrIptArr[1] = document.controls("ipt_hotkeynm"); //단축키명 입력박스
-
- vCtrSelArr[0] = document.controls("rdo_useyn"); //사용여부 선택박스
-
- for(var idx = 0; idx < vCtrIptArr.length; idx++){
- vCtrIptArr[idx].attribute("editable") = iGbn;
- }
-
- for(var idx = 0; idx < vCtrSelArr.length; idx++){
- vCtrSelArr[idx].disabled = sGbn;
- }
- }
-
- /* @group : 세포단축키등록 화면
- * @ver : 2007.01.12 (CMCDEV-0001)
- * @by : 황상미(ACK)
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 조회, 수정, 신규 작업 구분 함수
- */
- function fExeCodeUpdtFlag(){
- var updtGbn = model.getValue("/root/hidden/cdupdtflag");
-
- //updtGbn - 1:조회, 2:수정, 3:신규
- if(updtGbn == "1"){
- fExeControlChng("false");
- }else if(updtGbn == "2"){
- fExeControlChng("true");
- }else{
- fExeControlChng("true");
- model.resetInstanceNode("/root/main/hotkeyinfo");
- }
-
- model.refresh();
- }
-
- /* @group : 세포단축키등록 화면
- * @ver : 2007.01.12 (CMCDEV-0001)
- * @by : 황상미(ACK)
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 병리번호코드 리스트 조회 함수
- */
- function fGetRefData(){
-
- }
-
- ]]>
- </script>
- <!-- public Script end -->
- </model>
- </xhtml:head>
- <xhtml:body guideline="1,1194;2,784;1,855;2,58;2,757;1,860;" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <group id="group3" scroll="auto" style="left:0px; top:13px; width:1195px; height:744px; ">
- <group id="group1" style="left:0px; top:10px; width:1194px; height:35px; ">
- <shape id="roundrect1" class="roundrect_search" appearance="roundrect" style="left:0px; top:0px; width:1194px; height:35px; background-color:#fffbf2; border-color:#ffd799; "/>
- <button id="button3" class="btn1_letter2" navindex="4" style="left:1123px; top:7px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn1_letter2.gif; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fGetRefData();
- ]]>
- </script>
- </button>
- <line id="line14" class="line_4" style="x1:1108px; y1:6px; x2:1108px; y2:28px; border-color:#ffe4bb; border-left-style:solid; "/>
- <caption id="caption2" class="search_name" style="left:15px; top:9px; width:90px; height:17px; vertical-align:middle; background-image:../../../com/commonweb/images/search_bullet1.gif; ">사용여부 :</caption>
- <input id="input1" ref="/root/hidden/refval" class="input_search" navindex="3" style="left:974px; top:8px; width:120px; height:19px; "/>
- <select1 id="combo1" ref="/root/hidden/refflag" class="combo_search" navindex="2" appearance="minimal" style="left:851px; top:8px; width:120px; height:19px; ">
- <choices>
- <item>
- <label>단축키코드</label>
- <value>1</value>
- </item>
- <item>
- <label>단축키명</label>
- <value>2</value>
- </item>
- <item>
- <label>예문코드</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <caption id="caption22" class="search_name" style="left:773px; top:9px; width:75px; height:17px; vertical-align:middle; background-image:../../../com/commonweb/images/search_bullet1.gif; ">조회값 :</caption>
- <select1 id="rdo_s_useyn" ref="/root/hidden/useynflag" class="radio_search" navindex="1" overflow="visible" appearance="full" cellspacing="20" cols="3" style="left:108px; top:10px; width:122px; height:16px; border-style:none; ">
- <choices>
- <item>
- <label>사용</label>
- <value>1</value>
- </item>
- <item>
- <label>미사용</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </group>
- <group id="group2" style="left:0px; top:55px; width:855px; height:689px; ">
- <caption id="caption1" class="tit_2" style="left:5px; top:0px; width:131px; height:14px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">세포단축키</caption>
- <line id="line1" class="line_1" style="x1:0px; y1:15px; x2:855px; y2:15px; "/>
- <datagrid id="grd_hotkeylist" nodeset="/root/main/hotkeycnts/hotkeylist" caption="단축키
코드^단축키명^결과예문1^결과예문1^결과예문2^결과예문2^결과예문3^결과예문3^결과예문4^결과예문4^결과예문5^결과예문5|단축키
코드^단축키명^코드^명칭^코드^명칭^코드^명칭^코드^명칭^코드^명칭" colsep="^" colwidth="65, 110, 50, 120, 50, 120, 50, 120, 50, 120, 50, 120" dataheight="25" focuscolor="#b9e5fb" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:20px; width:855px; height:660px; ">
- <col ref="hotkeycd" type="output"/>
- <col ref="hotkeynm" type="output"/>
- <col ref="exmpcd1" type="output"/>
- <col ref="exmpnm1" type="output"/>
- <col ref="exmpcd2" type="output"/>
- <col ref="exmpnm2" type="output"/>
- <col ref="exmpcd3" type="output"/>
- <col ref="exmpnm3" type="output"/>
- <col ref="exmpcd4" type="output"/>
- <col ref="exmpnm4" type="output"/>
- <col ref="exmpcd5" type="output"/>
- <col ref="exmpnm5" type="output"/>
- </datagrid>
- </group>
- <group id="group5" style="left:861px; top:50px; width:333px; height:689px; ">
- <caption id="caption3" class="tit_2" style="left:5px; top:5px; width:113px; height:14px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">세포단축키 정보</caption>
- <line id="line2" class="line_1" style="x1:0px; y1:20px; x2:333px; y2:20px; "/>
- <line id="line10" class="line_2" style="x1:0px; y1:49px; x2:333px; y2:49px; "/>
- <line id="line11" class="line_2" style="x1:0px; y1:73px; x2:333px; y2:73px; "/>
- <line id="line12" class="line_2" style="x1:0px; y1:97px; x2:333px; y2:97px; "/>
- <line id="line13" class="line_2" style="x1:0px; y1:121px; x2:333px; y2:121px; "/>
- <line id="line3" class="line_3" style="x1:0px; y1:432px; x2:333px; y2:432px; "/>
- <caption id="caption13" class="cell_1" style="left:0px; top:25px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">단축키 코드</caption>
- <caption id="caption14" class="cell_1" style="left:0px; top:49px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">단축키 명</caption>
- <caption id="caption16" class="cell_1" style="left:0px; top:73px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">결과예문코드1 코드</caption>
- <caption id="caption17" class="cell_1" style="left:0px; top:97px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">결과예문코드1 명칭</caption>
- <caption id="caption4" class="cell_1" style="left:0px; top:121px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">결과예문코드2 코드</caption>
- <caption id="caption12" class="cell_1" style="left:0px; top:409px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">최종등록자</caption>
- <select1 id="rdo_lendflag" ref="/root/hidden/cdupdtflag" navindex="6" overflow="visible" appearance="full" cellspacing="10" cols="3" style="left:117px; top:4px; width:155px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>조회</label>
- <value>1</value>
- </item>
- <item>
- <label>수정</label>
- <value>2</value>
- </item>
- <item>
- <label>신규</label>
- <value>3</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fExeCodeUpdtFlag();
- ]]>
- </script>
- </select1>
- <caption id="caption15" class="cell_1" style="left:0px; top:337px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">최초등록일시</caption>
- <line id="line16" class="line_2" style="x1:0px; y1:361px; x2:333px; y2:361px; "/>
- <caption id="caption18" class="cell_1" style="left:0px; top:361px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">최초등록자</caption>
- <line id="line18" class="line_2" style="x1:0px; y1:385px; x2:333px; y2:385px; "/>
- <caption id="caption19" class="cell_1" style="left:0px; top:385px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">최종등록일시</caption>
- <line id="line19" class="line_2" style="x1:0px; y1:409px; x2:333px; y2:409px; "/>
- <line id="line20" class="line_2" style="x1:0px; y1:337px; x2:333px; y2:337px; "/>
- <output id="opt_fstrgstdt" ref="/root/main/hotkeyinfo/fstrgstdt" class="output_fix" format="yyyy-mm-dd" appearance="output" style="left:133px; top:340px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <output id="opt_fstrgstrid" ref="/root/main/hotkeyinfo/fstrgstrid" class="output_fix" format="yyyy-mm-dd" appearance="output" style="left:133px; top:364px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <output id="opt_lastrgstdt" ref="/root/main/hotkeyinfo/lastrgstdt" class="output_fix" format="yyyy-mm-dd" appearance="output" style="left:133px; top:388px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <output id="opt_lastrgstrid" ref="/root/main/hotkeyinfo/lastrgstrid" class="output_fix" format="yyyy-mm-dd" appearance="output" style="left:133px; top:412px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <caption id="caption9" class="cell_1" style="left:0px; top:313px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">사용여부</caption>
- <line id="line6" class="line_2" style="x1:0px; y1:313px; x2:333px; y2:313px; "/>
- <select1 id="rdo_useyn" ref="/root/main/hotkeyinfo/useyn" navindex="12" overflow="visible" appearance="full" cellspacing="30" cols="2" style="left:133px; top:318px; width:132px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>사용</label>
- <value>1</value>
- </item>
- <item>
- <label>미사용</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <line id="line4" class="line_2" style="x1:0px; y1:145px; x2:333px; y2:145px; "/>
- <caption id="caption5" class="cell_1" style="left:0px; top:145px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">결과예문코드2 명칭</caption>
- <caption id="caption7" class="cell_1" style="left:0px; top:169px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">결과예문코드3 코드</caption>
- <line id="line5" class="line_2" style="x1:0px; y1:169px; x2:333px; y2:169px; "/>
- <caption id="caption8" class="cell_1" style="left:0px; top:193px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">결과예문코드3 명칭</caption>
- <line id="line7" class="line_2" style="x1:0px; y1:193px; x2:333px; y2:193px; "/>
- <caption id="caption10" class="cell_1" style="left:0px; top:217px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">결과예문코드4 코드</caption>
- <line id="line8" class="line_2" style="x1:0px; y1:217px; x2:333px; y2:217px; "/>
- <line id="line9" class="line_2" style="x1:0px; y1:241px; x2:333px; y2:241px; "/>
- <caption id="caption11" class="cell_1" style="left:0px; top:241px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">결과예문코드4 명칭</caption>
- <line id="line15" class="line_2" style="x1:0px; y1:265px; x2:333px; y2:265px; "/>
- <caption id="caption20" class="cell_1" style="left:0px; top:265px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">결과예문코드5 코드</caption>
- <caption id="caption21" class="cell_1" style="left:0px; top:289px; width:130px; height:23px; text-align:left; vertical-align:middle; padding-left:10px; ">결과예문코드5 명칭</caption>
- <line id="line21" class="line_2" style="x1:0px; y1:289px; x2:333px; y2:289px; "/>
- <input id="ipt_hotkeycd" ref="/root/main/hotkeyinfo/hotkeycd" class="input_essential" navindex="7" appearance="input" style="left:133px; top:28px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <input id="ipt_hotkeynm" ref="/root/main/hotkeyinfo/hotkeynm" class="input_essential" navindex="8" appearance="input" style="left:133px; top:52px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <output id="ipt_exmpcd1" ref="/root/main/hotkeyinfo/exmpcd1" class="output_fix" navindex="9" appearance="output" style="left:133px; top:76px; width:177px; height:19px; border-color:#c0c0c0; "/>
- <output id="ipt_exmpnm1" ref="/root/main/hotkeyinfo/exmpnm1" class="output_fix" navindex="10" format="yyyy-mm-dd" appearance="output" style="left:133px; top:100px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <output id="ipt_exmpcdcd2" ref="/root/main/hotkeyinfo/exmpcd2" class="output_fix" navindex="11" format="yyyy-mm-dd" appearance="output" style="left:133px; top:124px; width:177px; height:19px; border-color:#c0c0c0; "/>
- <output id="ipt_exmpnm2" ref="/root/main/hotkeyinfo/exmpnm2" class="output_fix" navindex="11" format="yyyy-mm-dd" appearance="output" style="left:133px; top:148px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <output id="ipt_exmpcd3" ref="/root/main/hotkeyinfo/exmpcd3" class="output_fix" navindex="11" format="yyyy-mm-dd" appearance="output" style="left:133px; top:172px; width:177px; height:19px; border-color:#c0c0c0; "/>
- <output id="ipt_exmpnm3" ref="/root/main/hotkeyinfo/exmpnm3" class="output_fix" navindex="11" format="yyyy-mm-dd" appearance="output" style="left:133px; top:196px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <output id="ipt_exmpcd4" ref="/root/main/hotkeyinfo/exmpcd4" class="output_fix" navindex="11" format="yyyy-mm-dd" appearance="output" style="left:133px; top:220px; width:177px; height:19px; border-color:#c0c0c0; "/>
- <output id="ipt_exmpnm4" ref="/root/main/hotkeyinfo/exmpnm4" class="output_fix" navindex="11" format="yyyy-mm-dd" appearance="output" style="left:133px; top:244px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <output id="ipt_exmpcd5" ref="/root/main/hotkeyinfo/exmpcd5" class="output_fix" navindex="11" format="yyyy-mm-dd" appearance="output" style="left:133px; top:268px; width:177px; height:19px; border-color:#c0c0c0; "/>
- <output id="ipt_exmpnm5" ref="/root/main/hotkeyinfo/exmpnm5" class="output_fix" navindex="11" format="yyyy-mm-dd" appearance="output" style="left:133px; top:292px; width:200px; height:19px; border-color:#c0c0c0; "/>
- <button id="btn_exmpcd1" class="icon_search" navindex="7" style="left:313px; top:77px; width:16px; height:16px; ">
- <caption/>
- </button>
- <button id="btn_exmpcd2" class="icon_search" navindex="7" style="left:313px; top:125px; width:16px; height:16px; ">
- <caption/>
- </button>
- <button id="btn_exmpcd3" class="icon_search" navindex="7" style="left:313px; top:173px; width:16px; height:16px; ">
- <caption/>
- </button>
- <button id="btn_exmpcd4" class="icon_search" navindex="7" style="left:313px; top:221px; width:16px; height:16px; ">
- <caption/>
- </button>
- <button id="btn_exmpcd5" class="icon_search" navindex="7" style="left:313px; top:269px; width:16px; height:16px; ">
- <caption/>
- </button>
- </group>
- </group>
- <group id="group4" scroll="auto" style="left:0px; top:757px; width:1195px; height:27px; ">
- <button id="button11" class="btn4_letter2" navindex="13" style="left:1139px; top:5px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn4_letter2.gif; ">
- <caption>저장</caption>
- </button>
- <line id="line17" class="line_6" style="x1:0px; y1:0px; x2:1194px; y2:0px; "/>
- </group>
- <group id="grp_tle" style="left:0px; top:0px; width:1195px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:800px; height:15px; ">세포단축키등록</caption>
- </group>
- </xhtml:body>
- </xhtml:html>
|