123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPMNP00702" position="absolute 0 0 480 600" titletext="회복간호 Item 추가 화면" oninit="SPMNP00702_oninit" onload="SPMNP00702_onload">
- <Layouts>
- <Layout>
- <Static text="항목정보" position="absolute 5 24 100 40" id="caption1" class="tit_2"/>
- <Shape position="absolute 5 40 477 46" linetype="horizontal" id="line1" class="line_10"/>
- <Static text="회복간호 Item 추가 등록" position="absolute 0 0 179 20" id="caption6" class="tit_1"/>
- <Grid position="absolute 3 45 478 590" id="datagrid1" binddataset="ds_main_itemlist" cellsizingtype="col" scrollpixel="all" cellclickbound="cell" selecttype="multirow">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="209"/>
- <Column size="0"/>
- <Column size="215"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="31"/>
- </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="recflag"/>
- <Cell col="5" text="ioflag"/>
- <Cell col="6" text="V"/>
- </Band>
- <Band id="body">
- <Cell edittype="none" text="bind:lrgcd" suppress="1" suppressalign="middle"/>
- <Cell col="1" edittype="none" style="align:left;" text="bind:lrgnm" suppress="1" suppressalign="middle"/>
- <Cell col="2" displaytype="none" edittype="none" style="align:left;" text="bind:vsitemcd"/>
- <Cell col="3" edittype="none" style="align:left;" text="bind:vsitemnm"/>
- <Cell col="4" text="bind:recflag"/>
- <Cell col="5" text="bind:ioflag"/>
- <Cell col="6" displaytype="checkbox" edittype="checkbox" text="bind:v"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button position="absolute 421 18 477 40" id="btn_cancel" class="btn4" text="취소" onclick="btn_cancel_onclick"/>
- <Button position="absolute 362 18 418 40" id="btn_confirm" class="btn4" text="선택" onclick="btn_confirm_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_itemlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="lrgcd" type="STRING"/>
- <Column id="lrgnm" type="STRING"/>
- <Column id="vsitemcd" type="STRING"/>
- <Column id="vsitemnm" type="STRING"/>
- <Column id="recflag" type="STRING"/>
- <Column id="ioflag" type="STRING"/>
- <Column id="v" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="searchdd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name : 경대 의료정보시스템
- * Job Name : emr_opanstxp -> SPMNP00702
- * Creator : yjh
- * Make Date : 2017-03-08
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2017-03-08 yjh TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- include "emr_opanstxp::SPMNP00702.xjs";
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- var arErrorCode = new HashArray();
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components : Form
- * Components ID : SPMNP00702
- * Event : oninit
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시
- ****************************************************************************************/
- function SPMNP00702_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj); //폼 초기화
- }
- /****************************************************************************************
- * Components : Form
- * Components ID : SPMNP00702
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 로딩 완료시
- ****************************************************************************************/
- function SPMNP00702_onload(obj:Form, e:LoadEventInfo)
- {
- fInit();
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : btn_confirm
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 선택버튼 클릭시
- ****************************************************************************************/
- function btn_confirm_onclick(obj:Button, e:ClickEventInfo)
- {
- fClickOkBtn();
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : btn_cancel
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 취소버튼 클릭시
- ****************************************************************************************/
- function btn_cancel_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|