123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPMNZ00200" position="absolute 0 0 399 200" titletext="간호정보조사 조회 선택" oninit="SPMNZ00200_oninit" onload="SPMNZ00200_onload" onclose="SPMNZ00200_onclose">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 396 189" id="group5" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 25 394 31" linetype="horizontal" id="line12" class="line_1" style="strokepen:3 solid #33bbbbff;"/>
- <Grid position="absolute 1 30 395 188" id="grd_reclist" binddataset="ds_sub_enrcarecomrecinfo" autosizingtype="none" autofittype="col" oncelldblclick="group5_grd_reclist_oncelldblclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="178"/>
- <Column size="197"/>
- <Column size="0"/>
- <Column size="0"/>
- </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="간호정보조사서식코드"/>
- </Band>
- <Band id="body">
- <Cell displaytype="text" style="align:center;" text="bind:recdt" mask="####-##-## ##:##"/>
- <Cell col="1" displaytype="text" style="align:center;" text="bind:reckindnm"/>
- <Cell col="2" text="bind:recscrid"/>
- <Cell col="3" text="bind:formcd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Div>
- <Static text="조회할 목록을 더블클릭 하십시오" position="absolute 1 9 396 26" id="caption1" class="tit_2"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_grd_reclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="recdt" type="STRING"/>
- <Column id="reckindnm" type="STRING"/>
- <Column id="recscrid" type="STRING"/>
- <Column id="formcd" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_SPMNZ002_srchinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_sub_enrcarecomrecinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2015-11-13
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-11-13 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- function SPMNZ00200_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPMNZ00200_onload(obj:Form, e:LoadEventInfo)
- {
- fInitialize();
- }
- function fInitialize(){
- var sPatinfo = opener.frmf_getParameter("SPMNZ002_SendData_PatInfo");
- if( !utlf_isNull(sPatinfo) ){
- ds_sub_enrcarecomrecinfo.copyData(opener.ds_main_enrcarecomrecinfo);
- dsf_makeValue(ds_send_SPMNZ002_srchinfo, "SPMNZ002_srchinfo", "string", sPatinfo);
- this.titletext = "간호정보조사 기록 내역";
- opener.frmf_setParameter("SPMNZ002_SendData_PatInfo", "");
- }
- }
- function group5_grd_reclist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- opener.frmf_setParameter("SPMNZ00200_param", ds_sub_enrcarecomrecinfo.getColumn(e.row, "recscrid") );
- if ( utlf_isNull( ds_send_SPMNZ002_srchinfo.getColumn(0, "SPMNZ002_srchinfo") ) ){
- this.close();
- }else {
- var open = ds_sub_enrcarecomrecinfo.getColumn(e.row, "recscrid");
- frmf_open(open,open,"", "", "", "", "", "", "", "", "", "", "M");
- }
- }
- function SPMNZ00200_onclose(obj:Form, e:CloseEventInfo)
- {
- frmf_closeChildPop();
- }
- ]]></Script>
- </Form>
- </FDL>
|