12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPLOR90100" position="absolute 0 0 820 600" titletext="서술결과상세조회" class="frm_POP" onload="SPLOR90100_onload">
- <Layouts>
- <Layout>
- <Static id="stt_titleText" text="서술결과 상세보기" class="sta_POP_title" position="absolute 12 8 161 28"/>
- <Button id="btn_exit" taborder="1" class="btn_POP_cls" position="absolute 794 12 808 25" onclick="btn_exit_onclick"/>
- <TextArea id="tar_detl" taborder="2" position="absolute 12 46 808 565" enable="true" readonly="false" imemode="none" inputfilter="symbol"/>
- <Button id="btn_close" taborder="3" text="확인" class="btn5" position="absolute 764 568 808 588" onclick="btn_close_onclick"/>
- </Layout>
- </Layouts>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2015-11-09
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-11-09 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
-
- include "com_commonxp::comm_main.xjs";
- include "lis_commonxp::LLZ001.xjs";
- //콜백함수
- function cbf_SPLOR90100(strSvcID, nErrorCode, strErrorMag){
- if(nErrorCode != 0) sysf_messageBox("ID: " + strSvcID + " Error: " + strErrorMag, "E009", "");
- }
- function SPLOR90100_onload(obj:Form, e:LoadEventInfo){
- //폼 초기화 함수
- frmf_initForm(obj);
- dsf_createDs("ds_descrslt"
- , [{col: "readrslt"}]);
-
-
- ds_descrslt.copyData(arg_readrslt);
-
- //ds_descrslt.setColumn(ds_descrslt.addRow(), "readrslt", "000378512");
-
- tar_detl.value = ds_descrslt.getColumn(0, "readrslt");
-
- }
- function btn_close_onclick(obj:Button, e:ClickEventInfo){
- this.close();
- }
- function btn_exit_onclick(obj:Button, e:ClickEventInfo){
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|