1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPCIT01700" position="absolute 0 0 244 212" titletext="만족도그룹트리" oninit="SPCIT01700_oninit" onload="SPCIT01700_onload">
- <Layouts>
- <Layout>
- <Shape position="absolute -1 16 239 22" linetype="horizontal" id="line21" class="line_10"/>
- <Static text="수정 사유를 입력하십시오." position="absolute 0 0 175 21" align="align:center middle;" id="caption1" class="tit_2"/>
- <TextArea position="absolute 0 21 240 181" id="tar_qestupdtresn" wordwrap="word" autoselect="true"/>
- <Button id="btn_save" taborder="1" text="저장" class="btn4" position="absolute 64 184 120 206" onclick="btn_save_onclick"/>
- <Button id="btn_cencle" taborder="2" text="취소" class="btn4" position="absolute 123 184 179 206" onclick="btn_cencle_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_qestcntattr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="qestupdtresn" type="STRING" size="256"/>
- <Column id="savemode" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="qestupdtresn"/>
- <Col id="savemode">U</Col>
- </Row>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="tar_qestupdtresn" propid="value" datasetid="ds_main_qestcntattr" columnid="qestupdtresn"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2016-05-24
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2016-05-24 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- function SPCIT01700_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPCIT01700_onload(obj:Form, e:LoadEventInfo)
- {
-
- }
- function btn_save_onclick(obj:Button, e:ClickEventInfo)
- {
- var receive_qestupdtresn_path = opener.frmf_getParameter("receive_qestupdtresn_path");
- var receive_savemode_result = opener.frmf_getParameter("receive_savemode_result");
-
- var qestupdtresn = ds_main_qestcntattr.getColumn(0, "qestupdtresn");
- var savemode = ds_main_qestcntattr.getColumn(0, "savemode");
- var tar_qestupdtresn = ds_main_qestcntattr.getColumn(0, "qestupdtresn");
- if(utlf_isNull(tar_qestupdtresn))
- {
- sysf_messageBox("수정 사유가 입력 되지", "E007");
- return false;
- }
- else
- {
- var objArg = new Object();
- objArg.qestupdtresn = qestupdtresn;
- objArg.savemode = savemode;
- objArg.tar_qestupdtresn = tar_qestupdtresn;
- }
- opener.fSaveMsg();
- this.close(objArg);
- }
- function btn_cencle_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|