12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPMMO05500" position="absolute 0 0 335 227" titletext="수술/마취 전달사항" oninit="SPMMO05500_oninit" onload="SPMMO05500_onload">
- <Layouts>
- <Layout>
- <Static text="전달사항" position="absolute 0 5 134 25" id="caption7" class="tit_2"/>
- <Shape position="absolute 5 18 331 24" linetype="vertical" id="line9" class="line_1"/>
- <Static text="내용" position="absolute 6 29 45 195" align="align:center middle;" id="cap_cnts" class="cell_1"/>
- <Button position="absolute 276 202 332 224" id="btn_wndclose" class="btn4" text="닫기" onclick="btn_wndclose_onclick"/>
- <TextArea position="absolute 50 30 331 195" id="tar_opdelivefact"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="opdelivefact" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="tar_opdelivefact" propid="value" datasetid="ds_init" columnid="opdelivefact"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2014-12-10
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2014-12-10 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- include "emr_prcpmngtxp::MMO001.xjs";
- function SPMMO05500_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPMMO05500_onload(obj:Form, e:LoadEventInfo)
- {
- var opdelivefact = opener.frmf_getParameter("SPMMO05500_param");
-
- if( opdelivefact == null || opdelivefact == ""){
- alert("opdelivefact 정보가 없습니다.");
- close();
- } else {
- ds_init.setColumn(0, "opdelivefact", opdelivefact); //model.setValue("/root/init/opdelivefact", opdelivefact);
- //tar_opdelivefact.refresh();
- }
- }
- function btn_wndclose_onclick(obj:Button, e:ClickEventInfo)
- {
- close();
- }
- ]]></Script>
- </Form>
- </FDL>
|