12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
- <xhtml:html xmlns:ex="http://www.comsquare.co.kr/xforms/excel" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:ms="urn:schemas-microsoft-com:xslt" xmlns:my="http://www.comsquare.co.kr/example" 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" xmlns:cs="http://www.comsquare.co.kr/xforms">
- <xhtml:head>
- <xhtml:title>진단정보</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <init/>
- <hidden/>
- <temp>
- </temp>
- <screenMessageList>
- <patientInfoList>
- <patientid/>
- <gender/>
- <age/>
- <brthdd/>
- <diseasecd/>
- <diseasenm/>
- </patientInfoList>
- </screenMessageList>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- /*
- 화면을 초기화 합니다.
- */
- fInitialize();
-
- ]]>
- </script>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/referenceweb/js/ZCR001.js"/>
- <script type="javascript" src="../../../com/navigationweb/js/ZCN001.js"/>
- <script type="javascript">
- <![CDATA[
- /*
- 초기화 작업을 합니다.
- */
- function fInitialize(){
- /*
- model.removeNodeset("/root/screenMessageList");
- grd_resultlist.refresh();
- */
- }
- /*
- model.getValue(); 를 함수로 만들었습니다.
- param1 : node는 grid의 xPath입니다.
- param2 : row는 grid에서 선택한 row값입니다.
- param3 : element는 getvalue할 해당 element 명입니다.
- 해당 getvalue값을 return 해줍니다.
- return 하지 않으면 해당값을 가져올 수 없습니다.
- */
- function fGetValue(node, row, element) {
- var rtnValue = model.getValue(node + "[" + row + "]/" + element);
- return rtnValue;
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body pagewidth="780" pageheight="300" guideline="2,296;1,1200;2,779;" style="margin-left:0; margin-top:0; margin-right:0; margin-bottom:0; ">
- <datagrid id="grd_resultlist" nodeset="/root/screenMessageList/patientInfoList" autoresize="true" caption="진료과^진단코드^진단명^진단일" colsep="^" colwidth="132, 136, 363, 128" dataheight="25" ellipsis="true" extendlastcol="scroll" rowheight="25" rowsep="|" style="left:5px; top:30px; width:765px; height:266px; ">
- <col ref="rgstdepthngnm" style="text-align:center; "/>
- <col ref="diseasecd"/>
- <col ref="diseasenm"/>
- <col ref="diagdd" style="text-align:center; "/>
- </datagrid>
- <line id="line8" class="line_1" style="x1:5px; y1:25px; x2:770px; y2:25px; "/>
- <caption id="caption12" class="tit_2" style="left:5px; top:10px; width:70px; height:14px; ">진단정보</caption>
- <button id="button1" class="btn4_letter2" style="left:715px; top:2px; width:56px; height:22px; ">
- <caption>닫기</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- window.close();
- ]]>
- </script>
- </button>
- </xhtml:body>
- </xhtml:html>
|