123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.4">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="com_TextDetailView" classname="Guide_SA_01" inheritanceid="" position="absolute 0 0 400 235" titletext="택스트 자세히 보기" class="frm_POP" onload="form_onload">
- <Layouts>
- <Layout>
- <Static id="stt_titleText" text="타이틀" class="sta_POP_title" position="absolute 12 8 337 28" anchor="left top right" transparenthittest="true"/>
- <Button id="btn_close" taborder="2" anchor="top right" position="absolute 374 12 388 25" positiontype="position" class="btn_POP_cls" onclick="btn_close_onclick"/>
- <Static id="Static76" onclick="Static76_onclick" class="sta_guide" position="absolute 2 36 398 46" text="H10" visible="false"/>
- <Static id="Static01" text="W 10" onclick="Static76_onclick" class="sta_guide" position="absolute 388 46 398 216" visible="false"/>
- <Static id="Static02" text="H10" onclick="Static76_onclick" class="sta_guide" position="absolute 2 223 398 233" visible="false"/>
- <Static id="Static03" text="H3" onclick="Static76_onclick" class="sta_guide" position="absolute 344 200 388 203" visible="false"/>
- <Static id="Static04" text="W 12" onclick="Static76_onclick" class="sta_guide" position="absolute 388 0 400 36" visible="false"/>
- <Static id="Static05" text="H12" onclick="Static76_onclick" class="sta_guide" position="absolute 348 0 388 11" visible="false"/>
- <Static id="Static00" text="W 10" onclick="Static76_onclick" class="sta_guide" visible="false" position="absolute 2 46 12 192"/>
- <Button id="btn_confirm" taborder="4" text="확인" class="btn2" position="absolute 297 203 341 223" anchor="right bottom" onclick="btn_confirm_onclick"/>
- <Button id="btn_cancle" taborder="5" text="취소" class="btn2" position="absolute 344 203 388 223" anchor="right bottom" onclick="btn_cancle_onclick"/>
- <TextArea id="txt_textView" taborder="6" wordwrap="word" linespace="4" position="absolute 12 46 388 199" anchor="all"/>
- </Layout>
- </Layouts>
- <Bind/>
- <Objects/>
- <Script type="xscript4.0"><![CDATA[/************************************************************************************************
- * 파 일 명 : com_TextDetailView.xfdl
- * 작 성 자 : tobesoft
- * 작 성 일 : 2014.04.07
- * 설 명 : 부모창의 텍스트값을 넘겨 받아 보는 화면
- * 수 정 자 :
- * 수정이력 :
- ************************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs"
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
-
- /****************************************************************************************
- * Argument : 01.sKey : 코드아이디
- * : 02.sValue : 코드명
- * Description : 공통코드를 가져온다.
- ****************************************************************************************/
- function lf_getCodeList(sKey, sValue){
- }
- //=======================================================================================
- // Transaction Callback
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : 01.sSvcId : 서비스 ID
- * : 02.nErrorCode : 에러코드
- * : 03.sErrorMsg : 에러메시지
- * Description : tr_getCodeList의 콜백함수
- ****************************************************************************************/
- function cbf_tr_getCodeList(sSvcId, nErrorCode, sErrorMsg){
- }
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components : Form
- * Components ID : com_TextDetailView
- * Event : onload
- * Argument : 01.obj : Form
- * : 02.e : Event Object
- * Description : 화면이 로드 되면 실행 된다.
- ****************************************************************************************/
- function form_onload(obj:Form, e:LoadEventInfo)
- {
- if(!utlf_isNull(pTitleTxt)) stt_titleText.text = pTitleTxt;
- if(!utlf_isNull(pCont)) txt_textView.value = pCont;
-
- if(pReadonly)
- {
- txt_textView.readonly = true;
- }
- else
- {
- txt_textView.readonly = false;
- }
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : btn_close
- * Event : onclick
- * Argument : 01.obj : Button
- * : 02.e : Event Object
- * Description : X 버튼 클릭시 발생한다.
- ****************************************************************************************/
- function btn_close_onclick(obj:Button, e:ClickEventInfo)
- {
- close(-1);
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : btn_close
- * Event : onclick
- * Argument : 01.obj : Button
- * : 02.e : Event Object
- * Description : 취소버튼 클릭시 발생한다.
- ****************************************************************************************/
- function btn_cancle_onclick(obj:Button, e:ClickEventInfo)
- {
- close(-1);
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : btn_confirm
- * Event : onclick
- * Argument : 01.obj : Button
- * : 02.e : Event Object
- * Description : 확인버튼 클릭시 발생한다.
- ****************************************************************************************/
- function btn_confirm_onclick(obj:Button, e:ClickEventInfo)
- {
- close(txt_textView.value);
- }
- ]]></Script>
- </Form>
- </FDL>
|