123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPMMR04400" position="absolute 0 0 240 350" titletext="서식부제목관리" oninit="SPMMR04400_oninit" onload="SPMMR04400_onload">
- <Layouts>
- <Layout>
- <Button position="absolute 63 3 105 22" id="button1" class="btn2" text="추가" onclick="button1_onclick" anchor="left top"/>
- <Button position="absolute 107 3 149 22" id="button2" class="btn2" text="삭제" onclick="button2_onclick" anchor="left top"/>
- <Button position="absolute 151 3 193 22" id="button3" class="btn2" text="저장" onclick="button3_onclick" anchor="left top"/>
- <Grid position="absolute 0 25 240 350" id="grd_formsubtitle" binddataset="ds_main_formsubtitle_formsubtitlelist" anchor="all" autofittype="col" cellsizingtype="col" selecttype="multirow">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="215"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="부제목명"/>
- <Cell col="2"/>
- <Cell col="3" text="순번"/>
- </Band>
- <Band id="body">
- <Cell/>
- <Cell col="1" displaytype="text" edittype="text" text="bind:formsubtitle" wordwrap="char" editautoselect="true"/>
- <Cell col="2" text="bind:formsubtitleseq"/>
- <Cell col="3" displaytype="number" edittype="text" text="bind:seq" mask="999"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button position="absolute 4 3 30 22" id="button104" class="icon_top" text="" onclick="button104_onclick" anchor="left top"/>
- <Button position="absolute 33 3 59 22" id="button105" class="icon_bottom" text="" onclick="button105_onclick" anchor="left top"/>
- <Button position="absolute 195 3 237 22" id="button4" class="btn2" text="닫기" onclick="button4_onclick" anchor="left top"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_formsubtitle_formsubtitlelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="formsubtitle" type="STRING"/>
- <Column id="formsubtitleseq" type="STRING"/>
- <Column id="seq" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_formsubtitle_formsubtitlelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_userid" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="userid" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_formsublist" 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-01-15
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-01-15 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs"
- include "emr_medirecxp::MMR04400.xjs"
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : 01.sKey : 코드아이디
- * : 02.sValue : 코드명
- * Description : 공통코드를 가져온다.
- ****************************************************************************************/
- //=======================================================================================
- // Transaction Callback
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : 01.sSvcId : 서비스 ID
- * : 02.nErrorCode : 에러코드
- * : 03.sErrorMsg : 에러메시지
- * Description : tr_getCodeList의 콜백함수
- ****************************************************************************************/
- function cf_(sSvcId, nErrorCode, sErrorMsg){
- }
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components :
- * Components ID : button5
- * Event : onlbuttonup
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description :
- ****************************************************************************************/
- function SPMMR04400_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPMMR04400_onload(obj:Form, e:LoadEventInfo)
- {
- // Grid Init
- grdf_setGridSort(grd_formsubtitle)
- grdf_setRowTypeIcon(grd_formsubtitle, 0);
-
- fInitialize();
- }
- function button1_onclick(obj:Button, e:ClickEventInfo)
- {
- fAddRow();
- }
- function button2_onclick(obj:Button, e:ClickEventInfo)
- {
- fDelRow();
- }
- function button3_onclick(obj:Button, e:ClickEventInfo)
- {
- fSave();
- }
- function button104_onclick(obj:Button, e:ClickEventInfo)
- {
- fMoveUp();
- }
- function button105_onclick(obj:Button, e:ClickEventInfo)
- {
- fMoveDown();
- }
- function button4_onclick(obj:Button, e:ClickEventInfo)
- {
- fClose();
- }]]></Script>
- </Form>
- </FDL>
|