12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMPMI03510" position="absolute 0 0 1256 805" titletext="수술 및 분만 진행현황 안내" onload="SMPMI03510_onload">
- <Layouts>
- <Layout>
- <Button position="absolute 35 30 176 49" id="button26" class="btn2" text="응급 재원 환자 현황판" onclick="button26_onclick"/>
- </Layout>
- </Layouts>
- <Objects/>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2016-11-17
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2016-11-17 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include 'com_commonxp::comm_main.xjs';
- var arErrorCode = new HashArray();
- //=======================================================================================
- // Local methods
- //---------------------------------------------------------------------------------------
- /**
- * submit 후 호출 될 공통 콜백
- * @param {[type]} sSvcId [description]
- * @param {[type]} nErrorCode [description]
- * @param {[type]} sErrorMsg [description]
- * @return {Function} [description]
- */
- function callback(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- }
- //=======================================================================================
- // Events
- //---------------------------------------------------------------------------------------
- /**
- * onload 이벤트 발생 시 호출
- * @param {[type]} obj:Form [description]
- * @param {[type]} e:LoadEventInfo [description]
- */
- function SMPMI03510_onload(obj: Form, e: LoadEventInfo) {
- frmf_initForm(obj);
- frmf_modal("SMPMI03500", "SMPMI03500", "", "", "", "", "", "", "", "", "", "", "M");
- }
- /**
- * 응급 재원 환자 현황판 버튼 클릭 이벤트
- * @param {[type]} obj: Button [description]
- * @param {[type]} e: ClickEventInfo [description]
- * @return {[type]} [description]
- */
- function button26_onclick(obj: Button, e: ClickEventInfo) {
- frmf_modal("SMPMI03500", "SMPMI03500", "", "", "", "", "", "", "", "", "", "", "M");
- }]]></Script>
- </Form>
- </FDL>
|