123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPLLC90800" position="absolute 0 0 620 650" titletext="감염정보목록" onload="SPLLC90800_onload" onkeydown="SPLLC90800_onkeydown">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 600 630" id="group1">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 22 600 28" linetype="horizontal" id="line1" class="line_1"/>
- <Static text="전염병정보목록" position="absolute 5 10 113 23" id="caption1" class="tit_2"/>
- <Grid position="absolute 0 26 600 626" id="grd_infdisinfolist" binddataset="ds_infdisinfolist" autofittype="col" autosizingtype="row" extendsizetype="row">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="150"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="85"/>
- <Column size="85"/>
- <Column size="90"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="전염병명"/>
- <Cell col="1" text="진료과"/>
- <Cell col="2" text="작성자"/>
- <Cell col="3" text="신고일자"/>
- <Cell col="4" text="시작일"/>
- <Cell col="5" text="치유/사망"/>
- </Band>
- <Band id="body">
- <Cell style="align:left;" text="bind:lglydisnm" wordwrap="char" autosizerow="limitmin"/>
- <Cell col="1" text="bind:deptnm"/>
- <Cell col="2" text="bind:writ"/>
- <Cell col="3" displaytype="date" text="bind:reptdd" calendardisplaynulltype="nulltext"/>
- <Cell col="4" displaytype="date" text="bind:dispfromdt" calendardisplaynulltype="nulltext"/>
- <Cell col="5" text="bind:dethyn"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button position="absolute 540 2 596 24" id="btn_close" class="btn4" text="닫기" onclick="group1_btn_close_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_infdisinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="lglydisnm" type="STRING" size="256"/>
- <Column id="deptnm" type="STRING" size="256"/>
- <Column id="writ" type="STRING" size="256"/>
- <Column id="reptdd" type="STRING" size="256"/>
- <Column id="dispfromdt" type="STRING" size="256"/>
- <Column id="dethyn" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="lglydisnm"/>
- <Col id="deptnm"/>
- <Col id="writ"/>
- <Col id="reptdd"/>
- <Col id="dispfromdt"/>
- <Col id="dethyn"/>
- </Row>
- </Rows>
- </Dataset>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name : KU2.0
- * Job Name :
- * File Name : SPLLC90800_감염정보목록.xfdl
- * Creator :
- * Make Date : 2015-11-10
- *
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-11-10 DBS Converting Program(TF->XP)
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components :
- * Components ID : btn_close
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description :
- ****************************************************************************************/
- function SPLLC90800_onload(obj:Form, e:LoadEventInfo)
- {
- frmf_initForm(obj); // 화면공통
- try{
- ds_infdisinfolist.copyData(arg_ds_infdisinfolist);
- }catch(e){}
-
- }
- function group1_btn_close_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- function SPLLC90800_onkeydown(obj:Form, e:KeyEventInfo)
- {
- if(e.keycode == "13"){
- this.close();
- }
- }
- ]]></Script>
- </Form>
- </FDL>
|