123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.4">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMSMP90201_가이드샘플" classname="clientguide_sample" inheritanceid="" position="absolute 0 0 1024 768" titletext="New Form" onload="SMSMP90201_가이드샘플_onload">
- <Layouts>
- <Layout>
- <Button id="btn_modal" taborder="0" text="modal" position="absolute 24 20 124 40" onclick="btn_modal_onclick"/>
- <Button id="btn_modeless" taborder="1" text="modeless" position="absolute 24 48 124 68" onclick="btn_modeless_onclick"/>
- <Button id="Button00" taborder="2" text="close" position="absolute 87 123 187 143" onclick="Button00_onclick"/>
- <Button id="Button01" taborder="3" text="Button01" position="absolute 78 219 178 239" onclick="Button01_onclick"/>
- <Div id="Div00" taborder="4" text="Div00" position="absolute 24 20 224 170" url="tmp_samplexp::SMSMP90202_가이드팝업.xfdl"/>
- </Layout>
- </Layouts>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name : HIT
- * Job Name :
- * File Name : .xfdl
- * Creator :
- * Make Date : 2014-02-18
- *
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2014-02-18 HIT
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs"
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Transaction Callback
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- function SMSMP90201_가이드샘플_onload(obj:Form, e:LoadEventInfo)
- {
- frmf_initForm(obj);
- }
- function btn_modal_onclick(obj:Button, e:ClickEventInfo)
- {
- var sReturn = appf_openUserInfo("usernm", "이상준", "", "", "01");
- trace("sReturn="+sReturn.userInfo);
- //frmf_openInternal("SMSMP90202ssss", "tmp_samplexp::SMSMP90202_가이드팝업.xfdl", "");
- }
- function btn_modeless_onclick(obj:Button, e:ClickEventInfo)
- {
- //frmf_open("SMSMP90103", "SMSMP90103", "");
- frmf_openInternal("SMSMP90202ssss", "tmp_samplexp::SMSMP90202_가이드팝업.xfdl", "");
- }
- function Button00_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- function Button01_onclick(obj:Button, e:ClickEventInfo)
- {
- trace(opener);
- }
- ]]></Script>
- </Form>
- </FDL>
|