SPLPP02700_이미지확대.xfdl 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPLPP02700" position="absolute 0 0 816 920" titletext="이미지 조회" oninit="model1_oninit" class="frm_POP" onload="SPLPP02700_onload">
  5. <Layouts>
  6. <Layout>
  7. <ImageViewer id="img_source" taborder="0" visible="false" position="absolute 175 18 255 28" positiontype="position"/>
  8. <Static id="stt_titleText" text="확대 이미지" class="sta_POP_title" position="absolute 12 8 161 28" style="align:left;" positiontype="position"/>
  9. <ImageViewer id="img_expand" taborder="1" onkeydown="img_expand_onkeydown" position="absolute 12 46 804 908" positiontype="position" ondbclick="img_expand_ondbclick" stretch="fit"/>
  10. <Button id="btn_cls" taborder="2" class="btn_POP_cls" position="absolute 790 12 804 25" onclick="btn_cls_onclick"/>
  11. </Layout>
  12. </Layouts>
  13. <Objects>
  14. <Dataset id="ds_imginfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  15. </Objects>
  16. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  17. * System Name : KU2.0
  18. * Job Name :
  19. * File Name : SPLPP02700_이미지확대.xfdl
  20. * Creator :
  21. * Make Date : 2015-11-11
  22. *
  23. * Description :
  24. *---------------------------------------------------------------------------------------
  25. * Modify Date Modifier Modify Description
  26. *---------------------------------------------------------------------------------------
  27. * 2015-11-11 DBS Converting Program(TF->XP)
  28. *
  29. *---------------------------------------------------------------------------------------
  30. ****************************************************************************************/
  31. //=======================================================================================
  32. // xjs Include
  33. //---------------------------------------------------------------------------------------
  34. include "com_commonxp::comm_main.xjs";
  35. include "lis_commonxp::LPZ001.xjs";
  36. //=======================================================================================
  37. // Function
  38. //---------------------------------------------------------------------------------------
  39. function lf_exeInitialize(){
  40. var imgseqno = opener.ds_select_image.getColumn(0,"seqno");
  41. var nRow = opener.ds_grid_grd_imglist.findRow("imgseqno",imgseqno);
  42. //var rsltimg = opener.ds_grid_grd_imglist.getColumn(nRow,"rsltimg");
  43. //alert(opener.ds_grid_grd_imglist.getColumn(nRow,"rsltimg"));
  44. img_expand.image=opener.ds_grid_grd_imglist.getColumn(nRow,"rsltimg");
  45. }
  46. //=======================================================================================
  47. // Event
  48. //---------------------------------------------------------------------------------------
  49. /****************************************************************************************
  50. * Components :
  51. * Components ID : SPLPP02700
  52. * Event : onload
  53. * Argument : 01.obj : Object Event has occurred
  54. * : 02.e : Event Object
  55. * Description :
  56. ****************************************************************************************/
  57. function SPLPP02700_onload(obj:Form, e:LoadEventInfo)
  58. {
  59. frmf_initForm(obj); // 화면공통
  60. lf_exeInitialize();
  61. }
  62. function btn_cls_onclick(obj:Button, e:ClickEventInfo)
  63. {
  64. this.close();
  65. }
  66. ]]></Script>
  67. </Form>
  68. </FDL>