123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPLPP02700" position="absolute 0 0 816 920" titletext="이미지 조회" oninit="model1_oninit" class="frm_POP" onload="SPLPP02700_onload">
- <Layouts>
- <Layout>
- <ImageViewer id="img_source" taborder="0" visible="false" position="absolute 175 18 255 28" positiontype="position"/>
- <Static id="stt_titleText" text="확대 이미지" class="sta_POP_title" position="absolute 12 8 161 28" style="align:left;" positiontype="position"/>
- <ImageViewer id="img_expand" taborder="1" onkeydown="img_expand_onkeydown" position="absolute 12 46 804 908" positiontype="position" ondbclick="img_expand_ondbclick" stretch="fit"/>
- <Button id="btn_cls" taborder="2" class="btn_POP_cls" position="absolute 790 12 804 25" onclick="btn_cls_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_imginfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name : KU2.0
- * Job Name :
- * File Name : SPLPP02700_이미지확대.xfdl
- * Creator :
- * Make Date : 2015-11-11
- *
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-11-11 DBS Converting Program(TF->XP)
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // xjs Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- include "lis_commonxp::LPZ001.xjs";
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- function lf_exeInitialize(){
- var imgseqno = opener.ds_select_image.getColumn(0,"seqno");
- var nRow = opener.ds_grid_grd_imglist.findRow("imgseqno",imgseqno);
- //var rsltimg = opener.ds_grid_grd_imglist.getColumn(nRow,"rsltimg");
-
- //alert(opener.ds_grid_grd_imglist.getColumn(nRow,"rsltimg"));
- img_expand.image=opener.ds_grid_grd_imglist.getColumn(nRow,"rsltimg");
- }
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components :
- * Components ID : SPLPP02700
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description :
- ****************************************************************************************/
- function SPLPP02700_onload(obj:Form, e:LoadEventInfo)
- {
- frmf_initForm(obj); // 화면공통
-
- lf_exeInitialize();
-
- }
- function btn_cls_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|