SMMNP00101_전달사항팝업.xfdl 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SMMNP00101" position="absolute 0 0 500 175" titletext="전달사항" oninit="SMMNP00101_oninit" onload="SMMNP00101_onload">
  5. <Layouts>
  6. <Layout>
  7. <Div position="absolute 0 0 495 175" id="group3" scrollbars="autoboth">
  8. <Layouts>
  9. <Layout>
  10. <TextArea position="absolute 0 20 495 150" id="txt_data" wordwrap="word"/>
  11. <Button position="absolute 380 152 436 174" id="btn_confirm" class="btn4" visible="false" text="저장" onclick="group3_btn_confirm_onclick"/>
  12. <Button position="absolute 439 152 495 174" id="button1" class="btn4" text="닫기" onclick="group3_button1_onclick"/>
  13. <Static text="전달사항" position="absolute 8 2 119 18" align="align:center middle;" id="caption9" class="tit_2"/>
  14. </Layout>
  15. </Layouts>
  16. </Div>
  17. </Layout>
  18. </Layouts>
  19. <Objects>
  20. <Dataset id="ds_main_delivefactinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  21. <ColumnInfo>
  22. <Column id="delivefact" type="STRING" size="256"/>
  23. </ColumnInfo>
  24. <Rows>
  25. <Row/>
  26. </Rows>
  27. </Dataset>
  28. </Objects>
  29. <Bind>
  30. <BindItem id="item0" compid="group3.txt_data" propid="value" datasetid="ds_main_delivefactinfo" columnid="delivefact"/>
  31. </Bind>
  32. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  33. * System Name : 경대 의료정보시스템
  34. * Job Name : emr_opanstxp -> SMMNP00101
  35. * Creator : yjh
  36. * Make Date : 2016-03-31
  37. * Description :
  38. *---------------------------------------------------------------------------------------
  39. * Modify Date Modifier Modify Description
  40. *---------------------------------------------------------------------------------------
  41. * 2016-03-31 yjh TF->XP
  42. *
  43. *---------------------------------------------------------------------------------------
  44. ****************************************************************************************/
  45. //=======================================================================================
  46. // Lib Include
  47. //---------------------------------------------------------------------------------------
  48. include "com_commonxp::comm_main.xjs";
  49. //=======================================================================================
  50. // Global Form Variable
  51. //---------------------------------------------------------------------------------------
  52. //=======================================================================================
  53. // Function
  54. //---------------------------------------------------------------------------------------
  55. //=======================================================================================
  56. // Event
  57. //---------------------------------------------------------------------------------------
  58. /****************************************************************************************
  59. * Components : Form
  60. * Components ID : SMMNP00101
  61. * Event : oninit
  62. * Argument : 01.obj : Object Event has occurred
  63. * : 02.e : Event Object
  64. * Description : 화면 처음 초기화시
  65. ****************************************************************************************/
  66. function SMMNP00101_oninit(obj:Form, e:InitEventInfo)
  67. {
  68. frmf_initForm(obj); //폼 초기화
  69. }
  70. /****************************************************************************************
  71. * Components : Form
  72. * Components ID : SMMNP00101
  73. * Event : onload
  74. * Argument : 01.obj : Object Event has occurred
  75. * : 02.e : Event Object
  76. * Description : 화면 로딩 완료시
  77. ****************************************************************************************/
  78. function SMMNP00101_onload(obj:Form, e:LoadEventInfo)
  79. {
  80. if( frmf_checkOpener() ) {
  81. ds_main_delivefactinfo.setColumn(0, "delivefact", opener.frmf_getParameter("delivefact"));
  82. //model.setValue("/root/main/cond/oprsrvno", opener.javascript.getParameter("oprsrvno"));
  83. //model.copyNode("/root/send/reqdata", "/root/main/cond");
  84. //submit("TRMNP00105");
  85. }
  86. }
  87. /****************************************************************************************
  88. * Components : Button
  89. * Components ID : btn_confirm
  90. * Event : onclick
  91. * Argument : 01.obj : Object Event has occurred
  92. * : 02.e : Event Object
  93. * Description : 저장버튼 클릭시
  94. ****************************************************************************************/
  95. function group3_btn_confirm_onclick(obj:Button, e:ClickEventInfo)
  96. {
  97. close();
  98. }
  99. /****************************************************************************************
  100. * Components : Button
  101. * Components ID : button1
  102. * Event : onclick
  103. * Argument : 01.obj : Object Event has occurred
  104. * : 02.e : Event Object
  105. * Description : 닫기버튼 클릭시
  106. ****************************************************************************************/
  107. function group3_button1_onclick(obj:Button, e:ClickEventInfo)
  108. {
  109. close();
  110. }
  111. ]]></Script>
  112. </Form>
  113. </FDL>