123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482 |
- <?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>
- <cond>
- <reffromdd/>
- <reftodd/>
- <charityamtflagcd/>
- <sort>1</sort>
- </cond>
- <patinfo>
- <patinfolist/>
- </patinfo>
- <charityamtlist>
- <charityamtlistinfo>
- <paydd/>
- <trgtmanid/>
- <trgtmannm/>
- <baptnm/>
- <sex/>
- <age/>
- <payamt/>
- <charityamtflagnm/>
- <charityamtflagcd/>
- <cnts/>
- <seqno/>
- <status/>
- </charityamtlistinfo>
- </charityamtlist>
- <popupendflag/>
- <charitypayspec>
- <charitypayinfo>
- <trgtmanid/>
- <trgtmannm/>
- <baptnm/>
- <paydd/>
- <payamt/>
- <charityamtflagcd/>
- <cnts/>
- <seqno/>
- <status/>
- </charitypayinfo>
- </charitypayspec>
- </main>
- <send>
- <reqdata/>
- <savedata/>
- </send>
- <init>
- <comcodelist>
- <charityamtflagcd_cmblist>
- <A0011A0452>
- <cdnm>전체</cdnm>
- <cdid/>
- </A0011A0452>
- </charityamtflagcd_cmblist>
- </comcodelist>
- <comcodelist>
- <charityamtflag_cmblist/>
- </comcodelist>
- </init>
- <hidden>
- <reqdata>
- <trgtmanid/>
- </reqdata>
- </hidden>
- <tamp>
- </tamp>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- fInit();
- fRefCharityListInfo();
- ]]>
- </script>
- <submission id="TRAYA02401" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/charityamtlist"/>
- <submission id="TXAYA02401" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/savedata" resultref="/root/hidden"/>
- <submission id="TRZBC00105" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript">
- <![CDATA[
- //화면 오픈시
- function fInit() {
- //조회기간 오늘 날짜로 세팅
- var sDate = getNewDate();
- var CurrentDate = getCurrentDate();
- var lastDate = sDate.getFullYear();
- lastDate = lastDate.toString() + (( sDate.getMonth() + 1 > 9 ) ? sDate.getMonth() + 1 : "0" + (sDate.getMonth() + 1));
- lastDate = lastDate.toString() + sDate.getMonthDay();
- model.setValue("/root/main/cond/reffromdd", CurrentDate.substr(0,6)+"01");
- model.setValue("/root/main/cond/reftodd", lastDate);
- model.setValue("/root/main/charitypayspec/charitypayinfo/paydd", CurrentDate);
- model.setValue("/root/main/charitypayspec/charitypayinfo/status", "i");
-
- //자선비구분 콤보리스트 조회
- zbcfGetKindCodeList(
- new Array("A0011", "A0011"), //업무규칙
- new Array("A0452", "A0452"), //코드군
- new Array("/root/init/comcodelist/charityamtflagcd_cmblist", "/root/init/comcodelist/charityamtflag_cmblist"), //노드
- true, //minimum : true TRZBC00105
- new Array("dispseq", "dispseq"), //sorting 항목
- new Array("asc", "asc")
- );
- model.refresh();
- }//fInit END
- //조회버튼 클릭시
- function fRefCharityListInfo() {
- if (model.getValue("/root/main/cond/reffromdd") == "" || model.getValue("/root/main/cond/reftodd") == "") {
- messageBox("조회할 기간을", "C002");
- model.setFocus("ipt_reffromdd");
- return;
- }
- var reffromdd = model.getValue("/root/main/cond/reffromdd");
- var reftodd = model.getValue("/root/main/cond/reftodd");
- var charityamtflagcd = model.getValue("/root/main/cond/charityamtflagcd");
- var sort = model.getValue("/root/main/cond/sort");
-
- model.removeNodeset("/root/send/reqdata");
- model.makeNode("/root/send/reqdata");
- model.copyNode("/root/send/reqdata", "/root/main/cond");
- submit("TRAYA02401");
- }//fRefCharityListInfo END
-
- //조회된 데이터 그리드 행 클릭시 하단 등록 인스턴스에 반영
- function fGetCharityPayList(){
- var idxRow = grd_charityamtlist.row;
- if( idxRow < 1) return ;
-
- // model.resetInstanceNode("/root/hidden/main/charitypayspec/charitypayinfo");
- // model.copyNode("/root/main/charitypayspec/charitypayinfo", grd_charityamtlist.nodeset + "[" + idxRow + "]");
- model.copyNode("/root/main/charitypayspec/charitypayinfo", "/root/main/charityamtlist/charityamtlistinfo[" + idxRow + "]");
- // model.removeNodeset("/root/hidden/main/charitypayspec/charitypayinfo");
- // model.makeValue("/root/hidden/main/charitypayspec/charitypayinfo", grd_charityamtlist.nodeset + "[" + idxRow + "]");
- model.makeValue("/root/hidden/main/charitypayspec/charitypayinfo", model.getValue("/root/main/charityamtlist/charityamtlistinfo[" + idxRow + "]"));
- var seqno = model.getValue("/root/main/charitypayspec/charitypayinfo/seqno");
- if (seqno != "") { //수정
- var status = model.setValue("/root/main/charitypayspec/charitypayinfo/status", "u");
- model.refresh();
- }
- }//fGetCharityPayList END
-
- //저장시 필수항목값 체크
- function fCheck(){
- var trgtmanid = model.getValue("/root/main/charitypayspec/charitypayinfo/trgtmanid");
- var paydd = model.getValue("/root/main/charitypayspec/charitypayinfo/paydd");
- var payamt = model.getValue("/root/main/charitypayspec/charitypayinfo/payamt");
- var charityamtflagcd = model.getValue("/root/main/charitypayspec/charitypayinfo/charityamtflagcd");
-
- if(trgtmanid == ""){
- messageBox("환자등록번호를 ","C001");
- model.setFocus("ipt_trgtmanid");
- return false;
- }
- if(paydd == ""){
- messageBox("지급일자를 ","C001");
- model.setFocus("ipt_paydd");
- return false;
- }
- if(payamt == ""){
- messageBox("지급금액을 ","C001");
- model.setFocus("ipt_payamt");
- return false;
- }
- if(charityamtflagcd == ""){
- messageBox("자선비 구분을 ","C002");
- model.setFocus("cmb_charityamtflag");
- return false;
- }
- return true;
- }//fCheck END
- //저장버튼 클릭시
- function fSave() {
- var status = model.getValue("/root/main/charitypayspec/charitypayinfo/status");
- model.removeNodeset("/root/send/savedata");
- model.makeNode("/root/send/savedata/condinfo");
-
- if (status == "i") { //저장
- model.copyNode("/root/send/savedata/condinfo", "/root/main/charitypayspec/charitypayinfo");
- if(submit("TXAYA02401", false) == true){
- var pid = model.getValue("/root/hidden/reqdata/trgtmanid");
- if(pid == ""){
- messageBox("자료 저장이","I002");
- fReset();
- }else{
- messageBox("환자번호가 등록되어 있지 않아 저장할 수" , "I004");
- model.setFocus("ipt_trgtmanid");
- }
- }
- } else if(status == "u"){
- model.copyNode("/root/send/savedata/condinfo", "/root/main/charitypayspec/charitypayinfo");
- if(submit("TXAYA02401", false) == true){
- messageBox("자료 수정이","I002");
- fReset();
- model.setFocus("ipt_trgtmanid");
- }
- }
- model.refresh();
- fRefCharityListInfo();
- }//fSave END
- //환자정보팝업창 띄우고 내용가져와서 인스턴스에 반영
- function fSearchTrgtMan() {
- modal("SPAYA05300", 1,100,100);
- //modal("SPAYA05300",null,null,null, "SPAYA05300", "/root/actsource", "/root/main/actsource");
- if (model.getValue("/root/main/popupendflag") == "ok"){
- model.setValue("/root/main/charitypayspec/charitypayinfo/trgtmanid", model.getValue("/root/main/patinfo/patinfolist/pid"));
- model.setValue("/root/main/charitypayspec/charitypayinfo/trgtmannm", model.getValue("/root/main/patinfo/patinfolist/hngnm"));
- model.setValue("/root/main/charitypayspec/charitypayinfo/baptnm", model.getValue("/root/main/patinfo/patinfolist/baptnm"));
- model.setFocus("ipt_payamt");
- }else{
- model.setFocus("ipt_trgtmanid");
- }
- model.refresh();
- }//fSearchTrgtMan END
- //환자등록번호를 직접입력했을 경우 팝업내용 반영
- function fPopupinfo(){
- if (event.keyCode == 13) {
- model.makeValue("/root/temp/pid", ipt_trgtmanid.currentText);
- model.makeValue("/root/temp/srchcond", "1");
- model.makeValue("/root/temp/autoflag", "Y");
- modal("SPAYA05300", 1,100, 100, "SPAYA05300", "/root/temp", "/root/send");
- model.refresh();
- if (model.getValue("/root/main/popupendflag") == "ok"){
- model.setValue("/root/main/charitypayspec/charitypayinfo/trgtmanid", model.getValue("/root/main/patinfo/patinfolist/pid"));
- model.setValue("/root/main/charitypayspec/charitypayinfo/trgtmannm", model.getValue("/root/main/patinfo/patinfolist/hngnm"));
- model.setValue("/root/main/charitypayspec/charitypayinfo/baptnm", model.getValue("/root/main/patinfo/patinfolist/baptnm"));
- }else{
- model.setFocus("ipt_trgtmanid");
- }
- model.refresh();
- var index = ipt_payamt.navIndex;
- if(index == "3"){
- model.setFocus("ipt_payamt");
- }
- }
- }//fPopupinfo END
- //초기화 버튼 클릭시
- function fReset() {
- model.resetInstanceNode("/root/main/charitypayspec/charitypayinfo");
- model.setValue("/root/main/charitypayspec/charitypayinfo/status", "i");
- var CurrentDate = getCurrentDate();
- model.setValue("/root/main/charitypayspec/charitypayinfo/paydd", CurrentDate);
- model.setFocus("ipt_trgtmanid");
- model.refresh();
-
- btn_trgtman.disabled= false;
- ipt_trgtmanid.disabled = false;
- ipt_paydd.disabled = false;
- }// fReset END
-
- //자선비 지급내역 삭제버튼 클릭시
- function fDelData(){
- var trgtmanid = model.getValue("/root/main/charitypayspec/charitypayinfo/trgtmanid");
- var trgtmannm = model.getValue("/root/main/charitypayspec/charitypayinfo/trgtmannm");
- var charityamtflagcd = model.getValue("/root/main/charitypayspec/charitypayinfo/charityamtflagcd");
- var status = model.getValue("/root/main/charitypayspec/charitypayinfo/status");
- if (status == "i"){
- messageBox("삭제할 자선비 지급내역이 ","I004");
- } else {
- var btn = messageBox("선택한 자선비지급내역을 ","Q001");
- if(btn == "6"){
- model.removeNodeset("/root/send/savedata");
- model.makeNode("/root/send/savedata/condinfo");
- model.setValue("/root/main/charitypayspec/charitypayinfo/status", "d");
- model.copyNode("/root/send/savedata/condinfo", "/root/main/charitypayspec/charitypayinfo");
- submit("TXAYA02401");
-
- model.refresh();
- fRefCharityListInfo();
- fReset();
- } else if (btn == "7") {
- return;
- }
- }
- }//fDelData END
- //출력버튼 클릭시
- function fPreview(){
- exeReportPreview("RPAYA02401", "XMLSTR");
- }//fPreview END
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body guideline="1,1193;" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <group id="group1" style="left:0px; top:0px; width:1195px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:181px; height:14px; ">자선비지급명단 관리</caption>
- </group>
- <group id="group3" scroll="auto" style="left:0px; top:13px; width:1195px; height:744px; ">
- <group id="grp_sea" style="left:0px; top:10px; width:1194px; height:35px; vertical-align:top; ">
- <shape id="roundrect1" class="roundrect_search" appearance="roundrect" style="left:0px; top:0px; width:1194px; height:35px; "/>
- <button id="button1" class="btn1_letter2" style="left:1123px; top:7px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn1_letter2.gif; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fRefCharityListInfo();
- ]]>
- </script>
- </button>
- <line id="line13" class="line_4" style="x1:1107px; y1:7px; x2:1107px; y2:29px; "/>
- <caption id="caption3" class="search_name" style="left:20px; top:10px; width:86px; height:17px; ">조회기간 :</caption>
- <caption id="caption5" class="search_no_b" style="left:225px; top:10px; width:12px; height:17px; ">~</caption>
- <input id="ipt_reftodd" ref="/root/main/cond/reftodd" class="input_s_essential" navindex="7" inputtype="date" style="left:245px; top:10px; width:95px; height:19px; "/>
- <input id="ipt_reffromdd" ref="/root/main/cond/reffromdd" class="input_s_essential" navindex="6" inputtype="date" style="left:125px; top:10px; width:95px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fSetDate();
- function fSetDate(){
- //조회기간 설정시 선택한 시작기간에 속한 달의 마지막날로 세팅
- var reffromdd = model.getValue("/root/main/cond/reffromdd");
- var eDate = reffromdd.toDate();
- var lastDate = reffromdd.toDate().getDateFormat().substr(0, 4);
- lastDate = lastDate.toString() + (( eDate.getMonth() + 1 > 9 ) ? eDate.getMonth() + 1 : "0" + (eDate.getMonth() + 1));
- lastDate = lastDate.toString() + eDate.getMonthDay();
- model.setValue("/root/main/cond/reftodd", lastDate);
- model.refresh();
- model.setFocus("ipt_reftodd");
- }//fSetDate END
- ]]>
- </script>
- </input>
- <caption id="caption12" class="search_name" style="left:410px; top:10px; width:104px; height:17px; ">자선비 구분 :</caption>
- <select1 id="cmb_charityamtflagcd" ref="/root/main/cond/charityamtflagcd" class="combo_search" navindex="8" appearance="minimal" style="left:535px; top:10px; width:115px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/comcodelist/charityamtflagcd_cmblist/A0011A0452">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fRefCharityListInfo();
- ]]>
- </script>
- </select1>
- <caption id="caption1" class="search_name" style="left:725px; top:10px; width:104px; height:17px; ">정렬기준 :</caption>
- <select1 id="rdo_sort" ref="/root/main/cond/sort" navindex="9" overflow="visible" appearance="full" cols="2" style="left:825px; top:10px; width:170px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>지급일자</label>
- <value>1</value>
- </item>
- <item>
- <label>자선비구분</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fRefCharityListInfo();
- ]]>
- </script>
- </select1>
- </group>
- <datagrid id="grd_charityamtlist" nodeset="/root/main/charityamtlist/charityamtlistinfo" caption="지급일자^등록번호^환자명^세례명^성별^나이^지급금액^자선비구분^자선비코드^내용^seq" colsep="^" colwidth="118, 100, 108, 100, 64, 62, 97, 118, 30, 398, 10" dataheight="25" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:80px; width:1193px; height:515px; ">
- <col ref="paydd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="trgtmanid" style="text-align:center; "/>
- <col ref="trgtmannm" style="text-align:center; "/>
- <col ref="baptnm" style="text-align:center; "/>
- <col ref="sex" style="text-align:center; "/>
- <col ref="age" style="text-align:center; "/>
- <col ref="payamt" format="#,###" style="text-align:right; "/>
- <col ref="charityamtflagnm" style="text-align:center; "/>
- <col ref="charityamtflagcd" visibility="hidden"/>
- <col ref="cnts"/>
- <col ref="seqno" visibility="hidden"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- //초기화 실행 후 그리드 빈공간 클릭시 데이터가 하단 인스턴스에 뿌려지는것 방지
- if(grd_charityamtlist.isCell(event.target) && grd_charityamtlist.mouseRow >= grd_charityamtlist.fixedrows) {
- fGetCharityPayList();
- btn_trgtman.disabled= true;
- ipt_trgtmanid.disabled = true;
- ipt_paydd.disabled = true;
- }else{
- return;
- }
- ]]>
- </script>
- </datagrid>
- <caption id="caption2" class="tit_2" style="left:5px; top:58px; width:165px; height:14px; ">자선비지급명단 리스트</caption>
- <line id="line2" class="line_1" style="x1:0px; y1:75px; x2:1194px; y2:75px; "/>
- <group id="group9" style="left:0px; top:610px; width:1185px; height:90px; ">
- <caption id="caption13" class="tit_2" style="left:8px; top:5px; width:152px; height:14px; font-family:돋움; vertical-align:middle; ">자선비지급내역</caption>
- <caption id="caption14" class="cell_1" style="left:3px; top:25px; width:87px; height:23px; vertical-align:middle; ">환자등록번호</caption>
- <caption id="caption15" class="cell_1" style="left:243px; top:53px; width:65px; height:23px; vertical-align:middle; ">지급금액</caption>
- <line id="line12" class="line_1" style="x1:0px; y1:20px; x2:1179px; y2:20px; "/>
- <button id="button3" class="btn5_letter2" disable.background-image="../../../com/commonweb/images/dis_btn5_letter2.gif" style="left:1025px; top:0px; width:42px; height:19px; background-image:../../../com/commonweb/images/btn5_letter2.gif; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if ( !fCheck() ) return; //필수 저장여부 체크
- fSave();
- ]]>
- </script>
- </button>
- <caption id="caption8" class="cell_1" style="left:3px; top:53px; width:87px; height:23px; vertical-align:middle; ">지급일자</caption>
- <caption id="caption4" class="cell_1" style="left:650px; top:25px; width:87px; height:50px; vertical-align:middle; ">내용</caption>
- <input id="ipt_payamt" ref="/root/main/charitypayspec/charitypayinfo/payamt" class="input_essential" navindex="3" maxlength="9" format="#,###" style="left:310px; top:55px; width:110px; height:19px; text-align:right; "/>
- <input id="ipt_paydd" ref="/root/main/charitypayspec/charitypayinfo/paydd" class="input_essential" navindex="2" inputtype="date" format="yyyy-mm-dd" style="left:95px; top:55px; width:120px; height:19px; "/>
- <caption id="caption7" class="cell_1" style="left:435px; top:53px; width:85px; height:23px; vertical-align:middle; ">자선비구분</caption>
- <select1 id="cmb_charityamtflag" ref="/root/main/charitypayspec/charitypayinfo/charityamtflagcd" class="input_essential" navindex="4" appearance="minimal" style="left:525px; top:55px; width:120px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/comcodelist/charityamtflag_cmblist/A0011A0452">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <button id="button2" class="btn5_letter2" disable.background-image="../../../com/commonweb/images/dis_btn5_letter2.gif" style="left:1075px; top:0px; width:42px; height:19px; background-image:../../../com/commonweb/images/btn5_letter2.gif; ">
- <caption>삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fDelData();
- ]]>
- </script>
- </button>
- <caption id="caption9" class="cell_1" style="left:243px; top:25px; width:65px; height:23px; vertical-align:middle; ">환자명</caption>
- <output id="out_trgtmannm" ref="/root/main/charitypayspec/charitypayinfo/trgtmannm" class="output_fix" style="left:310px; top:27px; width:120px; height:19px; "/>
- <caption id="caption10" style="left:420px; top:55px; width:20px; height:20px; ">원</caption>
- <input id="ipt_trgtmanid" ref="/root/main/charitypayspec/charitypayinfo/trgtmanid" class="input_essential" navindex="1" style="left:95px; top:27px; width:120px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fPopupinfo();
- ]]>
- </script>
- </input>
- <button id="btn_trgtman" class="icon_search" style="left:220px; top:30px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fSearchTrgtMan();
- ]]>
- </script>
- </button>
- <caption id="caption11" class="cell_1" style="left:435px; top:25px; width:85px; height:23px; vertical-align:middle; ">세례명</caption>
- <output id="output2" ref="/root/main/charitypayspec/charitypayinfo/baptnm" class="output_fix" style="left:525px; top:27px; width:120px; height:19px; "/>
- <textarea id="textarea1" ref="/root/main/charitypayspec/charitypayinfo/cnts" navindex="5" maxlength="100" style="left:740px; top:25px; width:440px; height:50px; "/>
- <line id="line3" class="line_2" style="x1:0px; y1:51px; x2:650px; y2:51px; "/>
- <line id="line6" class="line_3" style="x1:0px; y1:80px; x2:1179px; y2:80px; "/>
- <button id="button15" class="btn5_letter3" disable.background-image="../../../com/commonweb/images/dis_btn5_letter3.gif" style="left:1125px; top:0px; width:53px; height:19px; background-image:../../../com/commonweb/images/btn5_letter3.gif; ">
- <caption>초기화</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fReset();
- ]]>
- </script>
- </button>
- <input id="input1" ref="/root/hidden/reqdata/trgtmanid" visibility="hidden" style="left:920px; top:0px; width:100px; height:19px; "/>
- </group>
- <button id="button10" class="btn2_letter2" disable.background-image="../../../com/commonweb/images/dis_btn2_letter2.gif" style="left:1135px; top:52px; width:42px; height:19px; background-image:../../../com/commonweb/images/btn2_letter2.gif; ">
- <caption>출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fPreview();
- ]]>
- </script>
- </button>
- </group>
- <group id="group5" scroll="auto" style="left:0px; top:757px; width:1195px; height:27px; ">
- <line id="line37" class="line_6" style="x1:0px; y1:0px; x2:1194px; y2:0px; "/>
- </group>
- </xhtml:body>
- </xhtml:html>
|