12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.4">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="animation" classname="animation" inheritanceid="" position="absolute 0 0 1024 768" titletext="New Form">
- <Layouts>
- <Layout>
- <Div id="Div00" taborder="2" text="Div00" position="absolute 0 229 333 496" visible="true" style="moveeffect:ma_show;">
- <Layouts>
- <Layout>
- <Static id="Static03" class="sta_LoginNoticeBody_bg" position="absolute 1 0 333 242" anchor="default"/>
- <Static id="Static06" class="sta_LoginNoticeBarMore_bg" position="absolute 1 242 333 267" anchor="default"/>
- <Grid id="grd_noticeList" taborder="3" binddataset="ds_noticeList" useinputpanel="false" onvtracklast="grd_noticeList_onvtracklast" oncellclick="grd_noticeList_oncellclick" position="absolute 10 6 322 228" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="35"/>
- <Column size="50"/>
- <Column size="146"/>
- <Column size="81"/>
- <Column size="72"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="20"/>
- </Rows>
- <Band id="head">
- <Cell text="번호"/>
- <Cell col="1" text="구분"/>
- <Cell col="2" text="제목"/>
- <Cell col="3" text="등록일"/>
- <Cell col="4"/>
- </Band>
- <Band id="body">
- <Cell text="bind:genrno"/>
- <Cell col="1" text="bind:targetflag"/>
- <Cell col="2" style="align:left;padding:0 0 0 5;" text="bind:ntcsubject"/>
- <Cell col="3" displaytype="date" text="bind:genrdd"/>
- <Cell col="4" text="bind:test"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button id="Button01" taborder="4" onclick="Div00_Button01_onclick" class="btn_LoginNoticeBarMore" position="absolute 272 244 304 259" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Static id="st_main00" class="sta_LoginForm_bg" enable="false" position="absolute 1 1 333 190"/>
- <Static id="Static09" class="sta_MenuGroupList_bg" position="absolute 1 189 333 431"/>
- <Static id="Static08" position="absolute 1 431 333 460" style="background:transparent URL('theme://images\Login_bg_Notice.png');"/>
- <Static id="Static11" text="HI-MED System Open" class="sta_LoginNoticeBar_txt" position="absolute 31 440 313 455"/>
- </Layout>
- </Layouts>
- <Objects>
- <TransitionAnimation id="ta_hide" duration="1000" starttime="0" direction="top" interpolation="Interpolation.backOut" type="fade" onstart="ta_show_onstart"/>
- <TransitionAnimation id="ta_show" duration="1000" direction="bottom" interpolation="Interpolation.circInOut" type="slide" onstart="ta_show_onstart" starttime="0"/>
- <MoveAnimation id="ma_show" repeat="1" repeattype="normal" duration="1000" starttime="0" targetcomp="Div00" interpolation="Interpolation.sineIn"/>
- </Objects>
- <Script type="xscript4.0"><![CDATA[var inOut = "in"
- function addBtn_onclick(obj:Button, e:ClickEventInfo)
- {
- // stcBottom.visible = false;
- // addBtn.visible = false;
- // Div00.visible = true;
- Div00.position.height = 0;
- }
- function Div00_Button01_onclick(obj:Button, e:ClickEventInfo)
- {
- // Div00.visible = false;
- // stcBottom.visible = true;
- // addBtn.visible = true;
- if(inOut == "in"){
- ma_show.repeattype = "nomal";
- Div00.move(Div00.position.left,Static08.position.bottom);
- inOut = "out";
- }else{
- ma_show.repeattype = "reverse";
- Div00.move(Div00.position.left,229);
- inOut = "in";
- }
- }
- ]]></Script>
- </Form>
- </FDL>
|