123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMZFS00601_DataSetRtrvSHOWCASE" classname="SMZFS00601_DataSetRtrvSHOWCASE" inheritanceid="" position="absolute 0 0 1192 629" titletext="New Form" onload="SMZFS00601_DataSetRtrvSHOWCASE_onload">
- <Layouts>
- <Layout>
- <Static id="Static07" text="■ method" position2="absolute l:494 w:123 t:3 h:26" positiontype="position2" style="font:dotum,12,bold;"/>
- <Static id="Static14" text=" ★ 컴포넌트 미리보기" onclick="Static00_onclick" position2="absolute l:1 w:267 t:12 h:20" positiontype="position2" style="font:돋움,12,bold;"/>
- <Shape id="Shape02" type="rectangle" position2="absolute l:10 w:461 t:37 h:531" positiontype="position2" style="font:돋움,9;"/>
- <Button id="btn_createsource" taborder="7" text="코드 생성" position="absolute 520 152 691 231" style="font:dotum,14,bold;" onclick="btn_createsource_onclick" visible="false"/>
- <Button id="btn_preShow" taborder="11" text="Alt + F5" position="absolute 115 88 344 189" style="font:Dotum,18;" onclick="btn_preShow_onclick"/>
- <Static id="Static00" text="※ 함수 호출 사용시 SSZFM00401.xjs file을 include 해야 합니다." onclick="Static00_onclick" position="absolute 518 43 1128 73" style="color:black;font:dotum,12,bold;"/>
- <Static id="Static01" text="화면 LOAD EVENT에 'lf_commoduleDataSetShow()' 선언하고 'Alt + F5' 키를" onclick="Static00_onclick" position="absolute 518 75 1232 105" style="color:black;font:dotum,12,bold;"/>
- <Static id="Static02" text="누르면 modal 화면 호출 됨" onclick="Static00_onclick" position="absolute 518 107 1232 137" style="color:black;font:dotum,12,bold;"/>
- <TextArea id="txtcode" taborder="12" position2="absolute l:521 w:543 t:152 h:416" positiontype="position2" readonly="true" value="	복사해서 사용하세요. 	//SSZFM00401.xjs 파일 필수적으로 include 	include "com_commodulexp::SSZFM00401.xjs"; 	//onload event에 아래 소스 복사 	lf_commoduleDataSetShow(); //DataSet 조회" style="background:darkgray;"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_test1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="test1" type="STRING" size="256"/>
- <Column id="test2" type="STRING" size="256"/>
- <Column id="test3" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="test1">1</Col>
- <Col id="test2">2</Col>
- <Col id="test3">3</Col>
- </Row>
- <Row>
- <Col id="test1">3</Col>
- <Col id="test2">4</Col>
- <Col id="test3">5</Col>
- </Row>
- <Row>
- <Col id="test1">6</Col>
- <Col id="test2">7</Col>
- <Col id="test3">8</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_test2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="tmp1" type="STRING" size="256"/>
- <Column id="tmp2" type="STRING" size="256"/>
- <Column id="tmp3" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="tmp1">11</Col>
- <Col id="tmp2">22</Col>
- <Col id="tmp3">33</Col>
- </Row>
- <Row>
- <Col id="tmp1">44</Col>
- <Col id="tmp2">55</Col>
- <Col id="tmp3">66</Col>
- </Row>
- <Row>
- <Col id="tmp1">77</Col>
- <Col id="tmp2">88</Col>
- <Col id="tmp3">99</Col>
- </Row>
- </Rows>
- </Dataset>
- </Objects>
- <Script type="xscript4.0"><![CDATA[include "com_commodulexp::SMZFS00401.xjs";
- function btn_preShow_onclick(obj:Button, e:ClickEventInfo)
- {
- alert("Alt + F5 키를 눌러 주세요");
- }
- function btn_createsource_onclick(obj:Button, e:ClickEventInfo)
- {
- txtcode.value = "";
-
- var sParamObj = new Object();
- sParamObj.title = "복사해서 사용하세요";
- sParamObj.source = "";
-
- sParamObj.source += "\t //SSZFM00401.xjs 파일 필수적으로 include \n";
- sParamObj.source += "\t include \"com_commodulexp::SSZFM00401.xjs\";\n\n";
-
- sParamObj.source += "\t //onload event에 아래 소스 복사\n";
- sParamObj.source += "\t lf_commoduleDataSetShow(); //DataSet 조회\n\n";
-
- txtcode.value = "AAA";
- trace(txtcode.value);
- //txtcode.value = sParamObj.source;
- }
- function SMZFS00601_DataSetRtrvSHOWCASE_onload(obj:Form, e:LoadEventInfo)
- {
- lf_commoduleDataSetShow();
- }
- ]]></Script>
- </Form>
- </FDL>
|