SPLOR90100_서술결과상세조회.xfdl 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPLOR90100" position="absolute 0 0 820 600" titletext="서술결과상세조회" class="frm_POP" onload="SPLOR90100_onload">
  5. <Layouts>
  6. <Layout>
  7. <Static id="stt_titleText" text="서술결과 상세보기" class="sta_POP_title" position="absolute 12 8 161 28"/>
  8. <Button id="btn_exit" taborder="1" class="btn_POP_cls" position="absolute 794 12 808 25" onclick="btn_exit_onclick"/>
  9. <TextArea id="tar_detl" taborder="2" position="absolute 12 46 808 565" enable="true" readonly="false" imemode="none" inputfilter="symbol"/>
  10. <Button id="btn_close" taborder="3" text="확인" class="btn5" position="absolute 764 568 808 588" onclick="btn_close_onclick"/>
  11. </Layout>
  12. </Layouts>
  13. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  14. * System Name :
  15. * Job Name :
  16. * Creator :
  17. * Make Date : 2015-11-09
  18. * Description :
  19. *---------------------------------------------------------------------------------------
  20. * Modify Date Modifier Modify Description
  21. *---------------------------------------------------------------------------------------
  22. * 2015-11-09 Live Converter TF->XP
  23. *
  24. *---------------------------------------------------------------------------------------
  25. ****************************************************************************************/
  26. include "com_commonxp::comm_main.xjs";
  27. include "lis_commonxp::LLZ001.xjs";
  28. //콜백함수
  29. function cbf_SPLOR90100(strSvcID, nErrorCode, strErrorMag){
  30. if(nErrorCode != 0) sysf_messageBox("ID: " + strSvcID + " Error: " + strErrorMag, "E009", "");
  31. }
  32. function SPLOR90100_onload(obj:Form, e:LoadEventInfo){
  33. //폼 초기화 함수
  34. frmf_initForm(obj);
  35. dsf_createDs("ds_descrslt"
  36. , [{col: "readrslt"}]);
  37. ds_descrslt.copyData(arg_readrslt);
  38. //ds_descrslt.setColumn(ds_descrslt.addRow(), "readrslt", "000378512");
  39. tar_detl.value = ds_descrslt.getColumn(0, "readrslt");
  40. }
  41. function btn_close_onclick(obj:Button, e:ClickEventInfo){
  42. this.close();
  43. }
  44. function btn_exit_onclick(obj:Button, e:ClickEventInfo){
  45. this.close();
  46. }
  47. ]]></Script>
  48. </Form>
  49. </FDL>