123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMMRI08000" position="absolute 0 0 829 837" titletext="열람목적 조회" oninit="SMMRI08001_oninit" onload="SMMRI08001_onload">
- <Layouts>
- <Layout>
- <Static text="열람목적 조회" position="absolute 0 0 118 25" id="caption6" class="tit_1"/>
- <Shape position="absolute 0 26 1195 32" linetype="horizontal" id="line17" class="line_1" visible="false"/>
- <Shape position="absolute 0 123 580 129" linetype="horizontal" id="line1" class="line_1"/>
- <Grid id="grd_data" class="datagrid2" taborder="1" binddataset="ds_grd_data" useinputpanel="false" cellsizingtype="col" oncellclick="grd_readapplist_oncellclick" position="absolute 10 33 800 824">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="69"/>
- <Column size="239"/>
- <Column size="117"/>
- <Column size="158"/>
- <Column size="83"/>
- <Column size="67"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="26" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="코드"/>
- <Cell col="1" text="명칭"/>
- <Cell col="2" text="직종"/>
- <Cell col="3" text="부서"/>
- <Cell col="4" text="기간"/>
- <Cell col="5" text="사용여부"/>
- <Cell col="6" text="appid"/>
- </Band>
- <Band id="body">
- <Cell text="bind:rsncd"/>
- <Cell col="1" style="align:left;" text="bind:rsnnm"/>
- <Cell col="2" displaytype="normal" edittype="none" text="bind:jobkind"/>
- <Cell col="3" text="bind:deptnm" mask="expr:utlf_isNull(appdd) ? '' : '####-##-##'"/>
- <Cell col="4" text="bind:readterm"/>
- <Cell col="5" text="bind:useyn"/>
- <Cell col="6" displaytype="combo" edittype="none" style="align:center middle;" text="bind:appid" combodataset="ds_init_cmb_appid" combocodecol="userid" combodatacol="usernm"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Combo id="Combo00" taborder="2" text="Combo00" position="absolute 228 8 328 28" onitemchanged="Combo00_onitemchanged" codecolumn="codecolumn" datacolumn="datacolumn">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn" size="256"/>
- <Column id="datacolumn" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">Y</Col>
- <Col id="datacolumn">Y</Col>
- </Row>
- <Row>
- <Col id="codecolumn">N</Col>
- <Col id="datacolumn">N</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Static id="Static00" text="사용유무" position="absolute 160 12 220 24" onclick="Static00_onclick"/>
- <Button id="btn_search" taborder="3" text="조회" class="btn4" position="absolute 744 4 800 26" onclick="btn_search_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_grd_data" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="rsncd" type="STRING" size="256"/>
- <Column id="rsnnm" type="STRING" size="256"/>
- <Column id="jobkind" type="STRING" size="256"/>
- <Column id="deptnm" type="STRING" size="256"/>
- <Column id="readterm" type="STRING" size="256"/>
- <Column id="useyn" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="useyn" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Bind/>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2014-10-30
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2014-10-30 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs"
- function SMMRI08001_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMMRI08001_onload(obj:Form, e:LoadEventInfo)
- {
- Combo00.value = "Y";
- fSearch();
- }
- function btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
- fSearch();
- }
- function fSearch() {
-
- ds_send.setColumn(0, "useyn",Combo00.value);
-
- var oParam = {};
- oParam.id = "S_SMMRI08001";
- oParam.service = "recmngtapp.IntegrityRec";
- oParam.method = "reqGetArsnList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_grd_data=arsnlist";
- oParam.async = false;
- oParam.callback = "cf_S_SMMRI08001";
-
- tranf_submit(oParam);
- }
- function cf_S_SMMRI08001(sSvcId, nErrorCode, sErrorMsg) {
- if(nErrorCode < 0) return;
- }
- ]]></Script>
- </Form>
- </FDL>
|