1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?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>검토서수신조정주석</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <list01>
- <opn_row_cnt/>
- <adjtcmt/>
- <docuflag/>
- <savedocuflag/>
- </list01>
- </main>
- <init>
- <temp>
- <adjtrem/>
- </temp>
- </init>
- </root>
- </instance>
- </model>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- // 공통코드 Load작업
- CommCode_Load();
- ]]>
- </script>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript">
- <![CDATA[
- // 공통코드 Load작업
- function CommCode_Load() {
- txtbox_adjtcmt.value = model.getValue("/root/main/list01/adjtcmt");
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body pagewidth="420" pageheight="170">
- <caption id="caption4" class="tit_2" style="left:6px; top:10px; width:147px; height:13px; ">검토서수신 조정주석 입력</caption>
- <line id="line3" class="line_1" style="x1:6px; y1:25px; x2:406px; y2:25px; "/>
- <button id="button12" class="btn2_letter2" style="left:360px; top:135px; width:42px; height:19px; ">
- <caption>확인</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var opn_row_cnt = model.getValue("/root/main/list01/opn_row_cnt");
- var adjtcmt = model.getValue("/root/main/list01/adjtcmt");
- var docuflag = model.getValue("/root/main/list01/docuflag");
- var savedocuflag = model.getValue("/root/main/list01/savedocuflag");
- if(docuflag == savedocuflag) {
- if(txtbox_adjtcmt.value == "" || txtbox_adjtcmt.value == adjtcmt) {
- window.close();
- } else {
- opener.grd_pidhclod.rowStatus(opn_row_cnt) = "2";
- }
- } else {
- if(txtbox_adjtcmt.value == "" || txtbox_adjtcmt.value == adjtcmt) {
- window.close();
- } else {
- opener.grd_pidhclod.rowStatus(opn_row_cnt) = "3";
- }
- }
- opener.grd_pidhclod.valueMatrix(opn_row_cnt, opener.grd_pidhclod.colRef("adjtcmt")) = txtbox_adjtcmt.value;
- // opener.model.setValue("/root/main/list01/gridpidhclod["+opn_row_cnt+"]/adjtcmt", txtbox_adjtcmt.value);
- window.close();
- ]]>
- </script>
- </button>
- <textarea id="txtbox_adjtcmt" ref="/root/init/temp/adjtrem" style="left:6px; top:30px; width:400px; height:100px; "/>
- </xhtml:body>
- </xhtml:html>
|