123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 |
- <?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>
- <wardcd/>
- <recdd/>
- </cond>
- <paminfo/>
- </main>
- <send>
- <reqdata/>
- </send>
- <hidden>
- <rexmemoinfo/>
- <memoinfo/>
- <teamid>-</teamid>
- <teamlist>
- <item>
- <label>전체</label>
- <value>-</value>
- </item>
- <item>
- <label>병동메모</label>
- <value>0</value>
- </item>
- <item>
- <label>1팀</label>
- <value>1</value>
- </item>
- <item>
- <label>2팀</label>
- <value>2</value>
- </item>
- <item>
- <label>3팀</label>
- <value>3</value>
- </item>
- <item>
- <label>4팀</label>
- <value>4</value>
- </item>
- <!-- 5팀추가_20110214_SMY -->
- <item>
- <label>5팀</label>
- <value>5</value>
- </item>
- <item>
- <label>추가1</label>
- <value>6</value>
- </item>
- <item>
- <label>추가2</label>
- <value>7</value>
- </item>
- <item>
- <label>추가3</label>
- <value>8</value>
- </item>
- </teamlist>
- <srchflag>R</srchflag>
- </hidden>
- <init>
- <wardlist>
- <dept/>
- </wardlist>
- </init>
- <code>
- <codeinfo/>
- </code>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- fInitialize();
- ]]>
- </script>
- <submission id="TRMNW00001" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/code/codeinfo"/>
- <submission id="TRMNB00206" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/memoinfo"/>
- <submission id="TXMNB00206" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/hidden/memoinfo"/>
- <submission id="TRZSU10105" mediatype="application/x-www-form-urlencoded" method="post"/>
- <submission id="TRZBC00101" mediatype="application/x-www-form-urlencoded" method="post"/>
- <submission id="TRZSD00109" mediatype="application/x-www-form-urlencoded" method="post" replace="instance" resultref="/root/init"/>
- <script type="javascript">
- <![CDATA[
- function fInitialize()
- {
- model.makeValue("/root/send/cdgrupid", "'U31'");
- model.makeValue("/root/send/srchdd" , getCurrentDate()); // 조회기준일자
- submit("TRMNW00001", false);
-
-
-
- zbcfGetDeptCodeList(getUserInfo("dutplceinstcd"),"orduseyn","W","/root/init/wardlist", "depthngnm", "asc"); // 병동정보
-
- // '15.11.29 _ 한귀자 과장님 요청으로 본원 지원반 추가
- if(instcd = '031'){
- addComboItem("cmb_wardcd", "지원반", "3041002000", "after");
- }
- // '15.11.29 _ 한귀자 과장님 요청으로 본원 지원반 추가
-
- var sPamInfo = getGlobalVariable("paminfo");
- setCSVToNode("/root/main/paminfo",sPamInfo,"pamlist");
- var sWardCd = model.getValue("/root/main/paminfo/pamlist/wardcd");
- model.setValue("/root/main/cond/wardcd", sWardCd);
- cmb_wardcd.refresh();
-
- model.setValue("/root/main/cond/recdd", getCurrentDate());
-
- if(cmb_wardcd.label != ""){
- fSearch();
- }
- else
- {
- model.setValue("/root/main/cond/wardcd","");
- }
- model.refresh();
-
- if(getUserInfo("dutplcecd") == model.getValue("/root/main/cond/wardcd") ){
- btn_0team.disabled = false;
- btn_1team.disabled = false;
- btn_2team.disabled = false;
- btn_3team.disabled = false;
- btn_4team.disabled = false;
- btn_5team.disabled = false;
- btn_6team.disabled = false;
- btn_7team.disabled = false;
- btn_8team.disabled = false;
- }else {
- btn_0team.disabled = true;
- btn_1team.disabled = true;
- btn_2team.disabled = true;
- btn_3team.disabled = true;
- btn_4team.disabled = true;
- btn_5team.disabled = true;
- btn_6team.disabled = true;
- btn_7team.disabled = true;
- btn_8team.disabled = true;
- }
- }
-
- function fSearch()
- {
- var deptcd = cmb_wardcd.value;
- var userdept = getUserInfo("dutplcecd");
- var spiritdept = model.getValue("/root/code/codeinfo/codelist[cdgrupid ='U31']/cdid");
-
- if(deptcd == spiritdept) {
- if(userdept != spiritdept) {
- messageBox("환자 개인정보 보호를 위해 해당병동 사용자외엔 조회를 제한합니다", "E");
- return;
- }
- }
- if ( !fChkData() )
- return;
-
- model.removenode("/root/send/reqdata");
- model.makeValue("/root/send/reqdata/wardcd", model.getValue("/root/main/cond/wardcd"));
- if ( model.getValue("/root/hidden/srchflag") == "P" ) //조회구분이 과거이면 업무일자로 조회, 아니면 최근 메모 조회
- {
- model.makeValue("/root/send/reqdata/recdd", model.getValue("/root/main/cond/recdd"));
- }
- submit("TRMNB00206", false);
-
- var totcnt = model.getXPathValue("count(/root/main/memoinfo/memolist)");
- for ( i=0; i<9; i++ )
- {
- if (model.getXPathValue("count(/root/main/memoinfo/memolist[teamid='"+i+"'])") == 0 )
- {
- totcnt++;
- model.makeNode("/root/main/memoinfo/memolist["+totcnt+"]");
- model.makeValue("/root/main/memoinfo/memolist["+totcnt+"]/teamid", i);
- model.makeNode("/root/main/memoinfo/memolist["+totcnt+"]/memocnts");
- }
- }
- }
-
- function fChkData()
- {
- if ( model.getValue("/root/main/cond/wardcd") == "" )
- {
- messageBox("병동을 선택 해 주세요.", "I");
- return false;
- }
- else if ( model.getValue("/root/main/cond/recdd") == "" )
- {
- messageBox("업무일자를 선택 해 주세요.", "I");
- return false;
- }
- return true;
- }
-
- function fSaveMemo( teamid )
- {
- model.copyNode("/root/send/reqdata", "/root/main/cond");
- model.makeValue("/root/send/reqdata/memocnts", model.getValue("/root/main/memoinfo/memolist[teamid='"+teamid+"']/memocnts"));
- model.makeValue("/root/send/reqdata/teamid", teamid);
-
- var text = model.getValue("/root/send/reqdata/memocnts");
- var arr = text.split("\n");
-
- if(arr.length < 76){
- if ( submit("TXMNB00206", false))
- {
- model.copyNode("/root/main/memoinfo/memolist[teamid='"+teamid+"']", "/root/hidden/memoinfo/memolist");
- model.removeNodeset("/root/hidden/memoinfo");
- model.refresh();
- messageBox("저장되었습니다","I");
- }
- }else{
- messageBox("줄수가 초과 되었습니다.","C");
- }
- }
- ]]>
- </script>
- </model>
- <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="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" src="../../../com/userdeptinfoweb/js/ZSU001.js"/>
- <script type="javascript" src="../../../com/departmentcodeweb/js/ZSD001.js"/>
- <script type="javascript" src="../../../emr/prcpmngtweb/js/MMO001.js"/>
- </xhtml:head>
- <xhtml:body overflow="visible" pagewidth="880" pageheight="730" guideline="1,1194;1,84;" style="margin-left:4; margin-top:0; margin-right:4; margin-bottom:0; ">
- <group id="grp_memo" scroll="auto" style="left:0px; top:0px; width:875px; height:725px; ">
- <group id="group2" style="left:0px; top:0px; width:855px; height:32px; vertical-align:top; ">
- <shape id="roundrect1" class="roundrect_search" appearance="roundrect" style="left:0px; top:0px; width:855px; height:30px; "/>
- <caption id="caption2" class="search_name" style="left:10px; top:7px; width:60px; height:17px; ">병동</caption>
- <button id="btn_search" class="btn1_letter2" style="left:732px; top:4px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSearch();
- model.refresh();
- ]]>
- </script>
- </button>
- <select1 id="cmb_wardcd" ref="/root/main/cond/wardcd" class="combo_search" appearance="minimal" style="left:65px; top:6px; width:105px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/wardlist/dept">
- <label ref="depthngnm"/>
- <value ref="deptcd"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- btn_search.dispatch("DOMActivate");
-
- if(getUserInfo("dutplcecd") == model.getValue("/root/main/cond/wardcd") || getUserInfo("userid") == "ENR"){
- btn_0team.disabled = false;
- btn_1team.disabled = false;
- btn_2team.disabled = false;
- btn_3team.disabled = false;
- btn_4team.disabled = false;
- btn_5team.disabled = false;
- btn_6team.disabled = false;
- btn_7team.disabled = false;
- btn_8team.disabled = false;
- }else {
- btn_0team.disabled = true;
- btn_1team.disabled = true;
- btn_2team.disabled = true;
- btn_3team.disabled = true;
- btn_4team.disabled = true;
- btn_5team.disabled = true;
- btn_6team.disabled = true;
- btn_7team.disabled = true;
- btn_8team.disabled = true;
- }
- ]]>
- </script>
- </select1>
- <line id="line9" class="line_4" style="x1:727px; y1:4px; x2:727px; y2:26px; "/>
- <caption id="caption20" class="search_name" style="left:382px; top:8px; width:86px; height:17px; ">업무일자:</caption>
- <input id="ipt_orddd" ref="/root/main/cond/recdd" class="input_search" disabled="true" inputtype="date" style="left:467px; top:6px; width:90px; height:19px; "/>
- <button id="button1" class="btn1_letter2" style="left:792px; top:4px; width:56px; height:22px; ">
- <caption>출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if ( !fChkData() )
- return;
-
- model.removeNodeset("/root/hidden/rexmemoinfo");
-
- var teamid = model.getValue("/root/hidden/teamid");
- var teamnm = model.getValue("/root/hidden/teamlist/item[value='"+teamid+"']/label");
-
- if ( teamid != "-" )
- {
- if ( model.getValue("/root/hidden/srchflag") == "P" ) {
- model.makeValue("/root/hidden/rexmemoinfo/memolist[1]/recdd", model.getValue("/root/send/reqdata/recdd"));
- }
-
- model.makeValue("/root/hidden/rexmemoinfo/memolist[1]/wardnm",cmb_wardcd.label);
- model.makeValue("/root/hidden/rexmemoinfo/memolist[1]/teamid",teamnm);
- model.makeValue("/root/hidden/rexmemoinfo/memolist[1]/memocnts",model.getValue("/root/main/memoinfo/memolist[teamid='"+teamid+"']/memocnts"));
- }
- else if ( teamid == "-" )
- {
- if ( model.getValue("/root/hidden/srchflag") == "P" ) {
- model.makeValue("/root/hidden/rexmemoinfo/memolist[1]/recdd", model.getValue("/root/send/reqdata/recdd"));
- }
- model.makeValue("/root/hidden/rexmemoinfo/memolist[1]/wardnm",cmb_wardcd.label);
- model.makeValue("/root/hidden/rexmemoinfo/memolist[1]/teamid","병동메모");
- model.makeValue("/root/hidden/rexmemoinfo/memolist[1]/memocnts",model.getValue("/root/main/memoinfo/memolist[teamid='0']/memocnts"));
- model.makeNode("/root/hidden/rexmemoinfo/memolist[2]");
- model.copyNode("/root/hidden/rexmemoinfo/memolist[2]", "/root/main/memoinfo/memolist[teamid='1']");
- model.makeNode("/root/hidden/rexmemoinfo/memolist[3]");
- model.copyNode("/root/hidden/rexmemoinfo/memolist[3]", "/root/main/memoinfo/memolist[teamid='2']");
- model.makeNode("/root/hidden/rexmemoinfo/memolist[4]");
- model.copyNode("/root/hidden/rexmemoinfo/memolist[4]", "/root/main/memoinfo/memolist[teamid='3']");
- model.makeNode("/root/hidden/rexmemoinfo/memolist[5]");
- model.copyNode("/root/hidden/rexmemoinfo/memolist[5]", "/root/main/memoinfo/memolist[teamid='4']");
- //5팀추가_20110214_SMY
- model.makeNode("/root/hidden/rexmemoinfo/memolist[6]");
- model.copyNode("/root/hidden/rexmemoinfo/memolist[6]", "/root/main/memoinfo/memolist[teamid='5']");
-
- model.makeValue("/root/hidden/rexmemoinfo/memolist[7]/teamid","추가1");
- model.makeValue("/root/hidden/rexmemoinfo/memolist[7]/memocnts",model.getValue("/root/main/memoinfo/memolist[teamid='6']/memocnts"));
-
- model.makeValue("/root/hidden/rexmemoinfo/memolist[8]/teamid","추가2");
- model.makeValue("/root/hidden/rexmemoinfo/memolist[8]/memocnts",model.getValue("/root/main/memoinfo/memolist[teamid='7']/memocnts"));
-
- model.makeValue("/root/hidden/rexmemoinfo/memolist[9]/teamid","추가3");
- model.makeValue("/root/hidden/rexmemoinfo/memolist[9]/memocnts",model.getValue("/root/main/memoinfo/memolist[teamid='8']/memocnts"));
- }
- exeReportPreview("RPMNB00201", "XMLSTR", "", "", "false", "", "", "", "", "false", "", "", "", "","","","","","","/root/hidden/rexmemoinfo/memolist");
-
-
- ]]>
- </script>
- </button>
- <caption id="caption5" class="search_name" style="left:569px; top:8px; width:61px; height:17px; ">팀별 :</caption>
- <select1 id="cmb_team" ref="/root/hidden/teamid" class="combo_search" appearance="minimal" style="left:632px; top:6px; width:87px; height:19px; ">
- <choices>
- <itemset nodeset="/root/hidden/teamlist/item">
- <label ref="label"/>
- <value ref="value"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var teamid = model.getValue("/root/hidden/teamid");
- if ( teamid == "-" )
- {
- var height = 187;
- var top = new Array(44,234,424,614,804,994,1184,1374,1564); //5팀추가_20110214_SMY
- for(i=0; i<9; i++)
- {
- eval("cap_"+i+"team").visible = true;
- eval("tex_"+i+"team").visible = true;
- eval("btn_"+i+"team").visible = true;
- eval("btn_"+i+"team").attribute("top") = parseInt(top[i]) + 2;
- eval("tex_"+i+"team").attribute("top") = top[i];
- eval("cap_"+i+"team").attribute("top") = top[i];
- eval("tex_"+i+"team").attribute("height") = 187;
- eval("cap_"+i+"team").attribute("height") = 187;
- eval("line_"+i+"team").visible = true;
- }
- grp_memo.attribute("overflow") = "scroll";
- }
- else
- {
- grp_memo.attribute("overflow") = "hidden";
- for(i=0; i<9; i++)
- {
- if ( i == teamid)
- {
- eval("cap_"+i+"team").visible = true;
- eval("tex_"+i+"team").visible = true;
- eval("btn_"+i+"team").visible = true;
- eval("btn_"+i+"team").attribute("top") = 46;
- eval("cap_"+i+"team").attribute("top") = 44;
- eval("tex_"+i+"team").attribute("top") = 44;
- eval("cap_"+i+"team").attribute("height") = 670;
- eval("tex_"+i+"team").attribute("height") = 670;
- }
- else
- {
- eval("cap_"+i+"team").visible = false;
- eval("tex_"+i+"team").visible = false;
- eval("btn_"+i+"team").visible = false;
- }
- eval("line_"+i+"team").visible = false;
- }
- }
- ]]>
- </script>
- </select1>
- <caption id="caption1" class="search_name" style="left:182px; top:8px; width:86px; height:17px; ">조회구분 :</caption>
- <select1 id="radio1" ref="/root/hidden/srchflag" appearance="full" cols="2" overflow="visible" style="left:271px; top:8px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>최근</label>
- <value>R</value>
- </item>
- <item>
- <label>과거</label>
- <value>P</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if ( model.getValue("/root/hidden/srchflag") == "P" )
- ipt_orddd.disabled = false;
- else
- ipt_orddd.disabled = true;
- ]]>
- </script>
- </select1>
- </group>
- <caption id="cap_1team" class="cell_1" style="left:0px; top:234px; width:79px; height:187px; text-align:center; vertical-align:middle; ">1팀</caption>
- <textarea id="tex_1team" ref="/root/main/memoinfo/memolist[teamid='1']/memocnts" scroll="autovscroll" imemode="hangul" maxlength="1332" style="left:82px; top:234px; width:773px; height:187px; "/>
- <caption id="cap_2team" class="cell_1" style="left:0px; top:424px; width:79px; height:187px; text-align:center; vertical-align:middle; ">2팀</caption>
- <textarea id="tex_2team" ref="/root/main/memoinfo/memolist[teamid='2']/memocnts" scroll="autovscroll" imemode="hangul" maxlength="1332" style="left:82px; top:424px; width:773px; height:187px; "/>
- <caption id="cap_3team" class="cell_1" style="left:0px; top:614px; width:79px; height:187px; text-align:center; vertical-align:middle; ">3팀</caption>
- <textarea id="tex_3team" ref="/root/main/memoinfo/memolist[teamid='3']/memocnts" scroll="autovscroll" imemode="hangul" maxlength="1332" style="left:82px; top:614px; width:773px; height:187px; "/>
- <caption id="cap_4team" class="cell_1" style="left:0px; top:804px; width:79px; height:187px; text-align:center; vertical-align:middle; ">4팀</caption>
- <textarea id="tex_4team" ref="/root/main/memoinfo/memolist[teamid='4']/memocnts" scroll="autovscroll" imemode="hangul" maxlength="1332" style="left:82px; top:804px; width:773px; height:187px; "/>
- <caption id="cap_5team" class="cell_1" style="left:0px; top:994px; width:79px; height:187px; text-align:center; vertical-align:middle; ">5팀</caption>
- <textarea id="tex_5team" ref="/root/main/memoinfo/memolist[teamid='5']/memocnts" scroll="autovscroll" imemode="hangul" maxlength="1332" style="left:82px; top:994px; width:773px; height:187px; "/>
- <caption id="cap_6team" class="cell_1" style="left:0px; top:1184px; width:79px; height:187px; text-align:center; vertical-align:middle; ">추가1</caption>
- <textarea id="tex_6team" ref="/root/main/memoinfo/memolist[teamid='6']/memocnts" scroll="autovscroll" imemode="hangul" maxlength="1332" style="left:82px; top:1184px; width:773px; height:187px; "/>
- <caption id="cap_7team" class="cell_1" style="left:0px; top:1374px; width:79px; height:187px; text-align:center; vertical-align:middle; ">추가2</caption>
- <textarea id="tex_7team" ref="/root/main/memoinfo/memolist[teamid='7']/memocnts" scroll="autovscroll" imemode="hangul" maxlength="1332" style="left:82px; top:1374px; width:773px; height:187px; "/>
- <caption id="cap_8team" class="cell_1" style="left:0px; top:1564px; width:79px; height:187px; text-align:center; vertical-align:middle; ">추가3</caption>
- <textarea id="tex_8team" ref="/root/main/memoinfo/memolist[teamid='8']/memocnts" scroll="autovscroll" imemode="hangul" maxlength="1332" style="left:82px; top:1564px; width:773px; height:187px; "/>
- <line id="line_0team" class="line_2" style="x1:0px; y1:42px; x2:858px; y2:42px; "/>
- <line id="line1" class="line_1" style="x1:0px; y1:38px; x2:855px; y2:38px; "/>
- <line id="line_2team" class="line_2" style="x1:0px; y1:422px; x2:858px; y2:422px; "/>
- <line id="line_3team" class="line_2" style="x1:0px; y1:612px; x2:858px; y2:612px; "/>
- <line id="line_4team" class="line_2" style="x1:0px; y1:802px; x2:858px; y2:802px; "/>
- <line id="line_5team" class="line_2" style="x1:0px; y1:992px; x2:858px; y2:992px; "/>
- <line id="line_6team" class="line_2" style="x1:0px; y1:1182px; x2:858px; y2:1182px; "/>
- <line id="line_7team" class="line_2" style="x1:0px; y1:1372px; x2:858px; y2:1372px; "/>
- <line id="line_8team" class="line_2" style="x1:0px; y1:1562px; x2:858px; y2:1562px; "/>
- <button id="btn_1team" class="btn5_letter2" style="left:2px; top:236px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSaveMemo("1");
- ]]>
- </script>
- </button>
- <button id="btn_2team" class="btn5_letter2" style="left:2px; top:426px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSaveMemo("2");
- ]]>
- </script>
- </button>
- <button id="btn_4team" class="btn5_letter2" style="left:2px; top:806px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSaveMemo("4");
- ]]>
- </script>
- </button>
- <button id="btn_3team" class="btn5_letter2" style="left:2px; top:616px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSaveMemo("3");
- ]]>
- </script>
- </button>
- <button id="btn_5team" class="btn5_letter2" style="left:2px; top:996px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSaveMemo("5");
- ]]>
- </script>
- </button>
- <caption id="cap_0team" class="cell_1" style="left:0px; top:44px; width:79px; height:187px; text-align:center; vertical-align:middle; ">병동메모</caption>
- <line id="line_1team" class="line_2" style="x1:0px; y1:232px; x2:858px; y2:232px; "/>
- <textarea id="tex_0team" ref="/root/main/memoinfo/memolist[teamid='0']/memocnts" scroll="autovscroll" imemode="hangul" maxlength="1332" style="left:82px; top:44px; width:773px; height:187px; "/>
- <button id="btn_0team" class="btn5_letter2" style="left:2px; top:46px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSaveMemo("0");
- ]]>
- </script>
- </button>
- <button id="btn_6team" class="btn5_letter2" style="left:2px; top:1186px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSaveMemo("6");
- ]]>
- </script>
- </button>
- <button id="btn_7team" class="btn5_letter2" style="left:2px; top:1376px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSaveMemo("7");
- ]]>
- </script>
- </button>
- <button id="btn_8team" class="btn5_letter2" style="left:2px; top:1566px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSaveMemo("8");
- ]]>
- </script>
- </button>
- </group>
- </xhtml:body>
- </xhtml:html>
|