SPCIT01700_수정사유입력.xfdl 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPCIT01700" position="absolute 0 0 244 212" titletext="만족도그룹트리" oninit="SPCIT01700_oninit" onload="SPCIT01700_onload">
  5. <Layouts>
  6. <Layout>
  7. <Shape position="absolute -1 16 239 22" linetype="horizontal" id="line21" class="line_10"/>
  8. <Static text="수정 사유를 입력하십시오." position="absolute 0 0 175 21" align="align:center middle;" id="caption1" class="tit_2"/>
  9. <TextArea position="absolute 0 21 240 181" id="tar_qestupdtresn" wordwrap="word" autoselect="true"/>
  10. <Button id="btn_save" taborder="1" text="저장" class="btn4" position="absolute 64 184 120 206" onclick="btn_save_onclick"/>
  11. <Button id="btn_cencle" taborder="2" text="취소" class="btn4" position="absolute 123 184 179 206" onclick="btn_cencle_onclick"/>
  12. </Layout>
  13. </Layouts>
  14. <Objects>
  15. <Dataset id="ds_main_qestcntattr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  16. <ColumnInfo>
  17. <Column id="qestupdtresn" type="STRING" size="256"/>
  18. <Column id="savemode" type="STRING" size="256"/>
  19. </ColumnInfo>
  20. <Rows>
  21. <Row>
  22. <Col id="qestupdtresn"/>
  23. <Col id="savemode">U</Col>
  24. </Row>
  25. </Rows>
  26. </Dataset>
  27. </Objects>
  28. <Bind>
  29. <BindItem id="item0" compid="tar_qestupdtresn" propid="value" datasetid="ds_main_qestcntattr" columnid="qestupdtresn"/>
  30. </Bind>
  31. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  32. * System Name :
  33. * Job Name :
  34. * Creator :
  35. * Make Date : 2016-05-24
  36. * Description :
  37. *---------------------------------------------------------------------------------------
  38. * Modify Date Modifier Modify Description
  39. *---------------------------------------------------------------------------------------
  40. * 2016-05-24 Live Converter TF->XP
  41. *
  42. *---------------------------------------------------------------------------------------
  43. ****************************************************************************************/
  44. include "com_commonxp::comm_main.xjs";
  45. function SPCIT01700_oninit(obj:Form, e:InitEventInfo)
  46. {
  47. frmf_initForm(obj);
  48. }
  49. function SPCIT01700_onload(obj:Form, e:LoadEventInfo)
  50. {
  51. }
  52. function btn_save_onclick(obj:Button, e:ClickEventInfo)
  53. {
  54. var receive_qestupdtresn_path = opener.frmf_getParameter("receive_qestupdtresn_path");
  55. var receive_savemode_result = opener.frmf_getParameter("receive_savemode_result");
  56. var qestupdtresn = ds_main_qestcntattr.getColumn(0, "qestupdtresn");
  57. var savemode = ds_main_qestcntattr.getColumn(0, "savemode");
  58. var tar_qestupdtresn = ds_main_qestcntattr.getColumn(0, "qestupdtresn");
  59. if(utlf_isNull(tar_qestupdtresn))
  60. {
  61. sysf_messageBox("수정 사유가 입력 되지", "E007");
  62. return false;
  63. }
  64. else
  65. {
  66. var objArg = new Object();
  67. objArg.qestupdtresn = qestupdtresn;
  68. objArg.savemode = savemode;
  69. objArg.tar_qestupdtresn = tar_qestupdtresn;
  70. }
  71. opener.fSaveMsg();
  72. this.close(objArg);
  73. }
  74. function btn_cencle_onclick(obj:Button, e:ClickEventInfo)
  75. {
  76. this.close();
  77. }
  78. ]]></Script>
  79. </Form>
  80. </FDL>