SPCPC01000_연결캠페인리스트.xfdl 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPCPC01000" position="absolute 0 0 405 249" titletext="연결캠페인리스트" oninit="SPCPC01000_oninit" onload="SPCPC01000_onload">
  5. <Layouts>
  6. <Layout>
  7. <Static id="caption2" text="연결캠페인 리스트" class="tit_2" position="absolute 0 0 165 21"/>
  8. <Shape id="line2" class="line_10" position="absolute 0 16 400 22"/>
  9. <Grid id="grd_nextcmpnlist" taborder="1" binddataset="ds_main_list_nextcmpnlist" useinputpanel="false" position="absolute 0 21 400 221" autoenter="select" cellsizingtype="col">
  10. <Formats>
  11. <Format id="default">
  12. <Columns>
  13. <Column size="21"/>
  14. <Column size="60"/>
  15. <Column size="80"/>
  16. <Column size="220"/>
  17. </Columns>
  18. <Rows>
  19. <Row size="24" band="head"/>
  20. <Row size="24"/>
  21. </Rows>
  22. <Band id="head">
  23. <Cell/>
  24. <Cell col="1" text="DEPTH"/>
  25. <Cell col="2" text="캠페인코드"/>
  26. <Cell col="3" text="캠페인명"/>
  27. </Band>
  28. <Band id="body">
  29. <Cell celltype="head" expr="expr:ds_main_list_nextcmpnlist.rowposition == currow ? '▶' : ''"/>
  30. <Cell col="1" class="text_center" text="bind:depth"/>
  31. <Cell col="2" text="bind:cmpncd"/>
  32. <Cell col="3" text="bind:cmpnnm"/>
  33. </Band>
  34. </Format>
  35. </Formats>
  36. </Grid>
  37. <Button id="btn_confirm" taborder="2" text="확인" class="btn4" position="absolute 344 223 400 245" onclick="btn_confirm_onclick"/>
  38. </Layout>
  39. </Layouts>
  40. <Objects>
  41. <Dataset id="ds_main_list_nextcmpnlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  42. <ColumnInfo>
  43. <Column id="depth" type="INT" size="256" sumtext="DEPTH"/>
  44. <Column id="cmpncd" type="STRING" size="256" sumtext="캠페인코드"/>
  45. <Column id="cmpnnm" type="STRING" size="256" sumtext="캠페인이름"/>
  46. </ColumnInfo>
  47. </Dataset>
  48. <Dataset id="ds_send_nextcmpn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  49. <ColumnInfo>
  50. <Column id="nextcmpn" type="STRING" size="256"/>
  51. </ColumnInfo>
  52. <Rows>
  53. <Row/>
  54. </Rows>
  55. </Dataset>
  56. </Objects>
  57. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  58. * System Name :
  59. * Job Name :
  60. * Creator :
  61. * Make Date : 2016-05-24
  62. * Description :
  63. *---------------------------------------------------------------------------------------
  64. * Modify Date Modifier Modify Description
  65. *---------------------------------------------------------------------------------------
  66. * 2016-05-24 Live Converter TF->XP
  67. *
  68. *---------------------------------------------------------------------------------------
  69. ****************************************************************************************/
  70. include "com_commonxp::comm_main.xjs";
  71. function SPCPC01000_oninit(obj:Form, e:InitEventInfo)
  72. {
  73. frmf_initForm(obj);
  74. }
  75. function SPCPC01000_onload(obj:Form, e:LoadEventInfo)
  76. {
  77. grdf_initGrid(grd_nextcmpnlist);
  78. try
  79. {
  80. ds_send_nextcmpn.copyData(arg_ds_send_nextcmpn);
  81. }
  82. catch(e){}
  83. var oParam = {};
  84. oParam.id = "TRCPC01001";
  85. oParam.service = "cmpnmngtapp.CmpnMngt";
  86. oParam.method = "reqGetNextCmpnList";
  87. oParam.inds = "req=ds_send_nextcmpn";
  88. oParam.outds = "ds_main_list_nextcmpnlist=nextcmpnlist";
  89. oParam.async = false;
  90. //oParam.callback = "cf_TRCPC01001";
  91. tranf_submit(oParam);
  92. }
  93. function btn_confirm_onclick(obj:Button, e:ClickEventInfo)
  94. {
  95. this.close();
  96. }
  97. ]]></Script>
  98. </Form>
  99. </FDL>