123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPMNW04802" position="absolute 0 0 1240 700" titletext="통증관리기록 기준자료" oninit="SPMNW04802_oninit" onload="SPMNW04802_onload" onbeforeclose="SPMNW04802_onbeforeclose">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 1235 690" id="group5" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Grid position="absolute 784 25 1031 565" id="grd_number3" class="grd_radio" visible="false" binddataset="ds_init_number3_number01" oncellclick="group5_grd_oncellclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="80"/>
- <Column size="48"/>
- <Column size="84"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="45"/>
- </Rows>
- <Band id="head">
- <Cell text="선택"/>
- <Cell col="1" colspan="3" text="강도" taborder="undefined"/>
- <Cell col="4" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" style="selectbackground: ;" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:number"/>
- <Cell col="2" style="align:left;" text="bind:img"/>
- <Cell col="3" style="align:left;" text="bind:cmt"/>
- <Cell col="4" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 784 25 1031 316" id="grd_number1" visible="false" binddataset="ds_init_number1_number01" oncellclick="group5_grd_oncellclick" class="grd_radio">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="213"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="선택"/>
- <Cell col="1" text="강도"/>
- <Cell col="2" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" style="selectbackground: ;" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:number"/>
- <Cell col="2" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 546 25 654 255" id="grd_bindo" binddataset="ds_init_bindo_bindo01" oncellclick="group5_grd_oncellclick" class="grd_radio">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="75"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="선택"/>
- <Cell col="1" text="빈도"/>
- <Cell col="2" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" style="controlalign: ;" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:bindo"/>
- <Cell col="2" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button position="absolute 1190 0 1232 19" id="button1" class="btn2" text="선택" onclick="group5_button1_onclick"/>
- <Edit position="absolute 0 570 125 589" id="ipt_part" visible="false"/>
- <Grid position="absolute 128 25 245 566" id="grd_cate" binddataset="ds_init_direc_direc01" oncellclick="group5_grd_cate_oncellclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="85"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="선택"/>
- <Cell col="1" text="방향"/>
- <Cell col="2" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="none" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:direc"/>
- <Cell col="2" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 384 25 543 566" id="grd_userlist" binddataset="ds_init_cate_cate01" oncellclick="group5_grd_userlist_oncellclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="43"/>
- <Column size="113"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="25"/>
- </Rows>
- <Band id="head">
- <Cell text="필드"/>
- <Cell col="1" text="선택"/>
- <Cell col="2" text="양상"/>
- <Cell col="3" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell text="bind:rmk" wordwrap="word" suppress="1" suppressalign="middle"/>
- <Cell col="1" displaytype="checkbox" edittype="none" text="bind:choice"/>
- <Cell col="2" style="align:left;" text="bind:cate"/>
- <Cell col="3" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 25 125 566" id="grd_part" binddataset="ds_init_part_part01" oncellclick="group5_grd_part_oncellclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="92"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="선택"/>
- <Cell col="1" text="부위"/>
- <Cell col="2" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="none" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:part"/>
- <Cell col="2" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Edit position="absolute 248 570 381 589" id="ipt_symp" visible="false"/>
- <Static text="통증관리기록 기준자료" position="absolute 0 4 158 20" id="cap_title" class="tit_2"/>
- <Shape position="absolute 0 20 1235 26" linetype="horizontal" id="line1" class="line_10"/>
- <Grid position="absolute 248 25 381 566" id="grd_symp" binddataset="ds_init_symp_symp01" oncellclick="group5_grd_symp_oncellclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="100"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="선택"/>
- <Cell col="1" text="관련 요인"/>
- <Cell col="2" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="none" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:symp"/>
- <Cell col="2" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 657 25 780 255" id="grd_tool" binddataset="ds_init_tool_tool01" oncellclick="group5_grd_oncellclick" class="grd_radio">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="90"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="선택"/>
- <Cell col="1" text="도구"/>
- <Cell col="2" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" style="selectbackground: ;" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:tool"/>
- <Cell col="2" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Edit position="absolute 128 570 245 589" id="ipt_cate" visible="false"/>
- <Grid position="absolute 657 257 780 472" id="grd_nondrug" binddataset="ds_init_nondrugarbt_nondrug01" oncellclick="group5_grd_nondrug_oncellclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="90"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="선택"/>
- <Cell col="1" text="중재"/>
- <Cell col="2" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="none" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:nondrug"/>
- <Cell col="2" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 829 125 1011 416" id="grd_number2" visible="false" binddataset="ds_init_number2_number01" oncellclick="group5_grd_oncellclick" class="grd_radio">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="150"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="선택"/>
- <Cell col="1" text="점수"/>
- <Cell col="2" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:number"/>
- <Cell col="2" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Div position="absolute 784 25 1034 569" id="grp_number4" visible="false">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 20 250 130" id="grd_number4a" visible="true" binddataset="ds_init_number4a_number01" anchor="default" extendsizetype="row" oncellclick="group5_grd_oncellclick" class="grd_radio" autofittype="col" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="186"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell colspan="3" text="Face 얼굴" taborder="undefined"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:number"/>
- <Cell col="2" style="align:left;padding:3 0 3 0;" text="bind:cmt" wordwrap="word"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 130 250 220" id="grd_number4b" visible="true" binddataset="ds_init_number4b_number01" anchor="default" oncellclick="group5_grd_oncellclick" class="grd_radio" autofittype="col" extendsizetype="row" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="186"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell colspan="3" text="Legs 다리" taborder="undefined"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:number"/>
- <Cell col="2" style="align:left;padding:3 0 3 0;" text="bind:cmt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 220 250 330" id="grd_number4c" visible="true" binddataset="ds_init_number4c_number01" anchor="default" extendsizetype="row" oncellclick="group5_grd_oncellclick" class="grd_radio" autofittype="col" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="186"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell colspan="3" text="Activity 활동" taborder="undefined"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:number"/>
- <Cell col="2" style="align:left;padding:3 0 3 0;" text="bind:cmt" wordwrap="word"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 330 250 432" id="grd_number4d" visible="true" binddataset="ds_init_number4d_number01" anchor="default" extendsizetype="row" oncellclick="group5_grd_oncellclick" class="grd_radio" autofittype="col" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="186"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell colspan="3" text="Cry 울음" taborder="undefined"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:number"/>
- <Cell col="2" style="align:left;padding:3 0 3 0;" text="bind:cmt" wordwrap="word"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 432 250 540" id="grd_number4e" visible="true" binddataset="ds_init_number4e_number01" anchor="default" extendsizetype="row" oncellclick="group5_grd_oncellclick" class="grd_radio" autofittype="col" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="186"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell colspan="3" text="Consolability 마음의 안정도" taborder="undefined"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:number"/>
- <Cell col="2" style="align:left;padding:3 0 3 0;" text="bind:cmt" wordwrap="word"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="* FLACC" position="absolute 0 0 100 20" id="caption1" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Edit position="absolute 657 451 780 470" id="ipt_nondrug" visible="false"/>
- <Div position="absolute 784 25 1134 690" id="grp_number5" visible="false">
- <Layouts>
- <Layout width="350" height="665">
- <Static text="* CNPS" position="absolute 0 0 100 20" id="caption2" anchor="default"/>
- <Grid position="absolute 0 503 350 665" id="grd_number5d" visible="true" binddataset="ds_init_number5d_number01" anchor="default" extendsizetype="row" class="grd_radio" oncellclick="group5_grp_number5_grd_number5d_oncellclick" scrollbars="none" autofittype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="60"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="207"/>
- </Columns>
- <Rows>
- <Row size="24" 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="설명"/>
- </Band>
- <Band id="body">
- <Cell style="align:left;" text="bind:no" suppress="1" suppressalign="middle,over"/>
- <Cell col="1" style="align:center middle;" text="bind:rmk" wordwrap="word" suppress="2" suppressalign="middle,over" tooltiptext="bind:rmk" autosizerow="limitmax"/>
- <Cell col="2" displaytype="checkbox" edittype="checkbox" text="bind:choice"/>
- <Cell col="3" text="bind:number"/>
- <Cell col="4" style="align:left;padding:3 3 3 3;linespace:2;" text="bind:cmt" wordwrap="word"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 342 350 527" id="grd_number5c" visible="true" binddataset="ds_init_number5c_number01" anchor="default" extendsizetype="row" class="grd_radio" oncellclick="group5_grp_number5_grd_number5c_oncellclick" scrollbars="none" autofittype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="60"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="207"/>
- </Columns>
- <Rows>
- <Row size="24" 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="설명"/>
- </Band>
- <Band id="body">
- <Cell style="align:left;" text="bind:no" suppress="1" suppressalign="middle,over"/>
- <Cell col="1" style="align:left;" text="bind:rmk" wordwrap="word" suppress="2" suppressalign="middle,over" tooltiptext="bind:rmk" autosizerow="limitmax"/>
- <Cell col="2" displaytype="checkbox" edittype="checkbox" text="bind:choice"/>
- <Cell col="3" text="bind:number"/>
- <Cell col="4" style="align:left;padding:3 3 3 3;linespace:2;" text="bind:cmt" wordwrap="word"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 167 350 366" id="grd_number5b" visible="true" binddataset="ds_init_number5b_number01" anchor="default" oncellclick="group5_grp_number5_grd_oncellclick" class="grd_radio" scrollbars="none" extendsizetype="row" autofittype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="60"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="207"/>
- </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" text="설명"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;" text="bind:no" suppress="1" suppressalign="middle,over"/>
- <Cell col="1" style="align:left;" text="bind:rmk" wordwrap="word" suppress="2" suppressalign="middle,over"/>
- <Cell col="2" displaytype="checkbox" edittype="checkbox" text="bind:choice"/>
- <Cell col="3" text="bind:number"/>
- <Cell col="4" style="align:left;padding:3 3 3 3;linespace:2;" text="bind:cmt" wordwrap="word"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 20 350 191" id="grd_number5a" visible="true" binddataset="ds_init_number5a_number01" anchor="default" extendsizetype="row" oncellclick="group5_grp_number5_grd_oncellclick" class="grd_radio" scrollbars="none" autofittype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="60"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="207"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell colspan="2" text="지표" taborder="undefined"/>
- <Cell col="2" text="선택"/>
- <Cell col="3" text="강도"/>
- <Cell col="4" text="설명"/>
- </Band>
- <Band id="body">
- <Cell style="align:left;" text="bind:no" suppress="1" suppressalign="middle,over"/>
- <Cell col="1" style="align:left;" text="bind:rmk" wordwrap="word" suppress="2" suppressalign="middle,over"/>
- <Cell col="2" displaytype="checkbox" edittype="checkbox" text="bind:choice"/>
- <Cell col="3" text="bind:number"/>
- <Cell col="4" style="align:left;padding:3 3 3 3;linespace:2;" text="bind:cmt" wordwrap="word"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Div>
- <Grid position="absolute 546 257 654 472" id="grd_paingb" binddataset="ds_init_paingb_paingb012" oncellclick="group5_grd_oncellclick" class="grd_radio" visible="false">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="75"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="선택"/>
- <Cell col="1" text="발생구분"/>
- <Cell col="2" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" style="controlimage: ;" text="bind:choice"/>
- <Cell col="1" style="align:left;" text="bind:paingb"/>
- <Cell col="2" text="bind:flag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape position="absolute 658 228 779 253" id="rectangle1" type="rectangle" visible="false"/>
- <Static text="기간" position="absolute 546 474 654 494" align="align:center middle;" id="caption29" class="cell_1" style="align:center middle;"/>
- <MaskEdit position="absolute 547 520 597 539" align="align:right middle;" id="ipt_termth" enable="true" mask="999"/>
- <MaskEdit position="absolute 547 543 597 562" align="align:right middle;" id="ipt_termdd" enable="true" mask="999"/>
- <Static text="시간 전" position="absolute 602 520 652 540" id="caption3"/>
- <Static text="일 전" position="absolute 602 543 652 563" id="caption4"/>
- <Shape position="absolute 546 563 654 569" linetype="horizontal" id="line2" class="line_3"/>
- <MaskEdit position="absolute 547 497 597 516" align="align:right middle;" id="ipt_termtm" enable="true" mask="999"/>
- <Static text="분 전" position="absolute 602 497 652 517" id="caption5"/>
- <Button position="absolute 1146 0 1188 19" id="button2" class="btn2" visible="false" text="닫기" onclick="group5_button2_onclick"/>
- <Static id="caption00" text="초기평가 항목" onclick="group5_caption00_onclick" class="cell_1" position="absolute 658 475 780 495" style="align:center middle;" visible="false"/>
- <CheckBox id="chk_chogi_flag" taborder="1" text="초기평가 여부" value="N" truevalue="Y" falsevalue="N" onclick="group5_CheckBox00_onclick" position="absolute 1083 -1 1183 19"/>
- <Shape id="line00" class="line_3" position="absolute 660 563 778 569" visible="false"/>
- <Shape id="Shape00" position="absolute 1 338 122 368" type="rectangle" style="strokepen:1 solid transparent;fillbrush:solid transparent true;background:white;color:white;" triangletype="top" linetype="horizontal"/>
- <Shape id="Shape01" type="rectangle" position="absolute 129 194 244 224" style="strokepen:1 solid transparent;fillbrush:solid transparent true;background:white;color:white;"/>
- <Shape id="Shape02" type="rectangle" position="absolute 250 170 379 314" style="strokepen:1 solid transparent;fillbrush:solid transparent true;background:white;color:white;" onclick="group5_Shape02_onclick"/>
- <Edit id="ipt_userlist" taborder="2" visible="false" position="absolute 384 570 542 589"/>
- <Edit id="ipt_bindo" taborder="3" visible="false" position="absolute 549 232 650 251"/>
- <Shape id="Shape03" type="rectangle" onclick="group5_Shape02_onclick" position="absolute 385 475 541 502" style="strokepen:1 solid transparent;fillbrush:solid transparent true;background:white;color:white;"/>
- <Shape id="Shape04" type="rectangle" onclick="group5_Shape02_onclick" position="absolute 547 122 651 149" style="strokepen:1 solid transparent;fillbrush:solid transparent true;background:white;color:white;"/>
- <Shape id="Shape05" type="rectangle" onclick="group5_Shape02_onclick" position="absolute 658 378 778 405" style="strokepen:1 solid transparent;fillbrush:solid transparent true;background:white;color:white;"/>
- </Layout>
- </Layouts>
- </Div>
- <Button id="button3" taborder="1" text="초기평가" onclick="group5_switch1_rec_grp_sea_grp_save_button2_onclick" class="btn2" position="absolute 6 673 72 692" visible="false"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="type" type="STRING" size="256" sumtext="팝업타입"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="grupcd" type="STRING" size="256" sumtext="그룹코드"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_detlgrup_getVO" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="grupnm" type="STRING" size="256" sumtext="그룹명"/>
- <Column id="grupcd" type="STRING" size="256" sumtext="그룹명"/>
- <Column id="sel" type="STRING" size="256" sumtext="코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="코드명"/>
- <Column id="detlinfo" type="STRING" size="256" sumtext="코드설명"/>
- <Column id="cd" type="STRING" size="256" sumtext="코드"/>
- <Column id="underdepth" type="STRING" size="256" sumtext="undermining 깊이"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_upflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="upflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_gubnflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="gubnflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="termtm" type="STRING" size="256"/>
- <Column id="termth" type="STRING" size="256"/>
- <Column id="termdd" type="STRING" size="256"/>
- <Column id="partnm" type="STRING" size="256"/>
- <Column id="catenm" type="STRING" size="256"/>
- <Column id="sympnm" type="STRING" size="256"/>
- <Column id="nondrugnm" type="STRING" size="256"/>
- <Column id="userlistnm" type="STRING" size="256"/>
- <Column id="bindonm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_part_part01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_init_part_part01_oncolumnchanged">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="part" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="flag">01</Col>
- <Col id="part">전신</Col>
- </Row>
- <Row>
- <Col id="flag">02</Col>
- <Col id="part">사지</Col>
- </Row>
- <Row>
- <Col id="flag">03</Col>
- <Col id="part">상지</Col>
- </Row>
- <Row>
- <Col id="flag">04</Col>
- <Col id="part">하지</Col>
- </Row>
- <Row>
- <Col id="flag">05</Col>
- <Col id="part">얼굴</Col>
- </Row>
- <Row>
- <Col id="flag">06</Col>
- <Col id="part">안검</Col>
- </Row>
- <Row>
- <Col id="flag">07</Col>
- <Col id="part">복부</Col>
- </Row>
- <Row>
- <Col id="flag">08</Col>
- <Col id="part">목</Col>
- </Row>
- <Row>
- <Col id="flag">09</Col>
- <Col id="part">두부</Col>
- </Row>
- <Row>
- <Col id="flag">54</Col>
- <Col id="part">흉부</Col>
- </Row>
- <Row>
- <Col id="flag">55</Col>
- <Col id="part">허리</Col>
- </Row>
- <Row>
- <Col id="flag">10</Col>
- <Col id="part">기타</Col>
- </Row>
- <Row>
- <Col id="part">없음</Col>
- <Col id="flag">99</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_direc_direc01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_init_direc_direc01_oncolumnchanged">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="direc" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="flag">11</Col>
- <Col id="direc">전체</Col>
- </Row>
- <Row>
- <Col id="flag">12</Col>
- <Col id="direc">상</Col>
- </Row>
- <Row>
- <Col id="flag">13</Col>
- <Col id="direc">하</Col>
- </Row>
- <Row>
- <Col id="flag">14</Col>
- <Col id="direc">좌</Col>
- </Row>
- <Row>
- <Col id="flag">15</Col>
- <Col id="direc">우</Col>
- </Row>
- <Row>
- <Col id="flag">16</Col>
- <Col id="direc">기타</Col>
- </Row>
- <Row>
- <Col id="direc">없음</Col>
- <Col id="flag">99</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_symp_symp01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_init_symp_symp01_oncolumnchanged">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="symp" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="flag">17</Col>
- <Col id="symp">수술</Col>
- </Row>
- <Row>
- <Col id="symp">시술/검사</Col>
- <Col id="flag">107</Col>
- </Row>
- <Row>
- <Col id="symp">치료적 요인</Col>
- <Col id="flag">108</Col>
- </Row>
- <Row>
- <Col id="flag">22</Col>
- <Col id="symp">암성통증</Col>
- </Row>
- <Row>
- <Col id="symp">모름</Col>
- <Col id="flag">109</Col>
- </Row>
- <Row>
- <Col id="symp">없음</Col>
- <Col id="flag">99</Col>
- </Row>
- <Row>
- <Col id="symp">항암화학요법</Col>
- <Col id="flag">18</Col>
- </Row>
- <Row>
- <Col id="symp">방사선치료</Col>
- <Col id="flag">19</Col>
- </Row>
- <Row>
- <Col id="symp">완화요법</Col>
- <Col id="flag">20</Col>
- </Row>
- <Row>
- <Col id="symp">생물학적치료</Col>
- <Col id="flag">21</Col>
- </Row>
- <Row>
- <Col id="symp">기타</Col>
- <Col id="flag">23</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cate_cate01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_init_cate_cate01_oncolumnchanged">
- <ColumnInfo>
- <Column id="rmk" type="STRING" size="256"/>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="cate" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="flag">25</Col>
- <Col id="rmk">체성통증(Somatic Pain)</Col>
- <Col id="cate">찢어지는 듯한</Col>
- </Row>
- <Row>
- <Col id="flag">28</Col>
- <Col id="rmk">체성통증(Somatic Pain)</Col>
- <Col id="cate">찌르는 듯한</Col>
- </Row>
- <Row>
- <Col id="flag">29</Col>
- <Col id="rmk">체성통증(Somatic Pain)</Col>
- <Col id="cate">결리는</Col>
- </Row>
- <Row>
- <Col id="flag">30</Col>
- <Col id="rmk">체성통증(Somatic Pain)</Col>
- <Col id="cate">뻐근한</Col>
- </Row>
- <Row>
- <Col id="flag">31</Col>
- <Col id="rmk">내장성통증(Visceral Pain)</Col>
- <Col id="cate">뒤틀리는</Col>
- </Row>
- <Row>
- <Col id="flag">32</Col>
- <Col id="rmk">내장성통증(Visceral Pain)</Col>
- <Col id="cate">쥐어짜는 듯한</Col>
- </Row>
- <Row>
- <Col id="flag">33</Col>
- <Col id="rmk">내장성통증(Visceral Pain)</Col>
- <Col id="cate">쑤시는</Col>
- </Row>
- <Row>
- <Col id="flag">34</Col>
- <Col id="rmk">내장성통증(Visceral Pain)</Col>
- <Col id="cate">묵직한</Col>
- </Row>
- <Row>
- <Col id="flag">35</Col>
- <Col id="rmk">내장성통증(Visceral Pain)</Col>
- <Col id="cate">쓰린</Col>
- </Row>
- <Row>
- <Col id="rmk">내장성통증(Visceral Pain)</Col>
- <Col id="cate">화끈거리는</Col>
- <Col id="flag">36</Col>
- </Row>
- <Row>
- <Col id="flag">38</Col>
- <Col id="rmk">신경병성통증(Neuropathic Pain)</Col>
- <Col id="cate">찌릿찌릿한</Col>
- </Row>
- <Row>
- <Col id="flag">39</Col>
- <Col id="rmk">신경병성통증(Neuropathic Pain)</Col>
- <Col id="cate">저린</Col>
- </Row>
- <Row>
- <Col id="rmk">신경병성통증(Neuropathic Pain)</Col>
- <Col id="cate">뻗치는</Col>
- <Col id="flag">40</Col>
- </Row>
- <Row>
- <Col id="cate">날카로운</Col>
- <Col id="flag">93</Col>
- <Col id="rmk">신경병성통증(Neuropathic Pain)</Col>
- </Row>
- <Row>
- <Col id="cate">짓누르는</Col>
- <Col id="flag">94</Col>
- <Col id="rmk">신경병성통증(Neuropathic Pain)</Col>
- </Row>
- <Row>
- <Col id="cate">타는 듯한</Col>
- <Col id="flag">95</Col>
- <Col id="rmk">신경병성통증(Neuropathic Pain)</Col>
- </Row>
- <Row>
- <Col id="cate">표현못함</Col>
- <Col id="flag">98</Col>
- <Col id="rmk">신경병성통증(Neuropathic Pain)</Col>
- </Row>
- <Row>
- <Col id="cate">기타</Col>
- <Col id="flag">99</Col>
- <Col id="rmk">신경병성통증(Neuropathic Pain)</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_bindo_bindo01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_init_bindo_bindo01_oncolumnchanged">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="bindo" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="flag">42</Col>
- <Col id="bindo">간헐적</Col>
- <Col id="choice"/>
- </Row>
- <Row>
- <Col id="choice"/>
- <Col id="bindo">지속적</Col>
- <Col id="flag">101</Col>
- </Row>
- <Row>
- <Col id="bindo">표현못함</Col>
- <Col id="flag">102</Col>
- <Col id="choice"/>
- </Row>
- <Row>
- <Col id="bindo">기타</Col>
- <Col id="flag">103</Col>
- <Col id="choice"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_tool_tool01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_init_tool_tool01_oncolumnchanged">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="tool" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="flag">81</Col>
- <Col id="tool">NRS</Col>
- </Row>
- <Row>
- <Col id="flag">84</Col>
- <Col id="tool">FPRS</Col>
- </Row>
- <Row>
- <Col id="flag">83</Col>
- <Col id="tool">FLACC</Col>
- </Row>
- <Row>
- <Col id="flag">85</Col>
- <Col id="tool">CNPS</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_paingb_paingb012" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="paingb" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="flag">91</Col>
- <Col id="paingb">정규</Col>
- </Row>
- <Row>
- <Col id="flag">92</Col>
- <Col id="paingb">돌발</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_nondrugarbt_nondrug01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_init_nondrugarbt_nondrug01_oncolumnchanged">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="nondrug" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="nondrug">지속/정규 약물</Col>
- <Col id="flag">104</Col>
- </Row>
- <Row>
- <Col id="flag">105</Col>
- <Col id="nondrug">약물중재</Col>
- </Row>
- <Row>
- <Col id="flag">106</Col>
- <Col id="nondrug">비약물중재</Col>
- </Row>
- <Row>
- <Col id="flag">59</Col>
- <Col id="nondrug">관찰함</Col>
- </Row>
- <Row>
- <Col id="flag">60</Col>
- <Col id="nondrug">기타</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number5a_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="no" type="STRING" size="256"/>
- <Column id="rmk" type="STRING" size="256"/>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="cmt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="no">1</Col>
- <Col id="number">0</Col>
- <Col id="rmk">얼굴표정</Col>
- <Col id="cmt">표정 변화 없음. 자연스러운 표정 유지</Col>
- </Row>
- <Row>
- <Col id="no">1</Col>
- <Col id="number">1</Col>
- <Col id="rmk">얼굴표정</Col>
- <Col id="cmt">미간을 찡그림, 눈살을 찌푸림, 눈물을 글썽임</Col>
- </Row>
- <Row>
- <Col id="no">1</Col>
- <Col id="number">2</Col>
- <Col id="rmk">얼굴표정</Col>
- <Col id="cmt">눈을 꽉 감음, 눈을 번쩍 뜸, 눈물을 흘림, 입을 씰룩거리며 눈 주위를 찡그림</Col>
- </Row>
- <Row>
- <Col id="no">1</Col>
- <Col id="number">3</Col>
- <Col id="rmk">얼굴표정</Col>
- <Col id="cmt">이를 악묾, 얼굴이 우거지상으로 일그러짐, 기관내관을 밀어내거나 깨묾</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number5b_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="no" type="STRING" size="256"/>
- <Column id="rmk" type="STRING" size="256"/>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="cmt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="no">2</Col>
- <Col id="number">0</Col>
- <Col id="rmk">신체반응</Col>
- <Col id="cmt">움직임이 없음, 편안한 자세 유지, 저항 없이 이완됨</Col>
- </Row>
- <Row>
- <Col id="no">2</Col>
- <Col id="number">1</Col>
- <Col id="rmk">신체반응</Col>
- <Col id="cmt">느리고 조심스러운 움직임, 몸을 뒤척임, 일부 근육이 긴장됨</Col>
- </Row>
- <Row>
- <Col id="no">2</Col>
- <Col id="number">2</Col>
- <Col id="rmk">신체반응</Col>
- <Col id="cmt">통증부위를 만지려고 하거나 문지름, 고개를 흔들거나 사지의 움직임이 증가함, 온몸에 힘을 줌</Col>
- </Row>
- <Row>
- <Col id="no">2</Col>
- <Col id="number">3</Col>
- <Col id="rmk">신체반응</Col>
- <Col id="cmt">온몸을 흔들거나 비틀며 심하게 움직임, 공격적인 행동을 보임, 침대 난간(side rail)을 치며 발버둥을 침, 근육이 뻣뻣해지고 활처럼 휨</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number5c_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="no" type="STRING" size="256"/>
- <Column id="rmk" type="STRING" size="256"/>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="cmt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="no">3</Col>
- <Col id="rmk">기계호흡 순응도(기관삽관 만 한경우 포함)</Col>
- <Col id="choice"/>
- <Col id="number">0</Col>
- <Col id="cmt">경보가 울리지 않고 인공호흡기에 잘 적응함, 기침 없음</Col>
- </Row>
- <Row>
- <Col id="no">3</Col>
- <Col id="rmk">기계호흡 순응도(기관삽관 만 한경우 포함)</Col>
- <Col id="choice"/>
- <Col id="number">1</Col>
- <Col id="cmt">경보가 울리지만 곧 멈춤, 간헐적으로 기침을 함</Col>
- </Row>
- <Row>
- <Col id="no">3</Col>
- <Col id="rmk">기계호흡 순응도(기관삽관 만 한경우 포함)</Col>
- <Col id="choice"/>
- <Col id="number">2</Col>
- <Col id="cmt">경보가 자주 울림, 기계호흡에 저항함, 기계호흡과 맞춰 쉬지 못하며 호흡수가 증가함, 기침을 주기적으로 함</Col>
- </Row>
- <Row>
- <Col id="no">3</Col>
- <Col id="rmk">기계호흡 순응도(기관삽관 만 한경우 포함)</Col>
- <Col id="choice"/>
- <Col id="number">3</Col>
- <Col id="cmt">기계호흡과 심한 부조화(fighting)를 보임, 지속적으로 기침을 하고 환기가 차단됨</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number5d_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="no" type="STRING" size="256"/>
- <Column id="rmk" type="STRING" size="256"/>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="cmt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="no">3</Col>
- <Col id="number">0</Col>
- <Col id="rmk">또는 발성(발관 환자)</Col>
- <Col id="cmt">정상적인 말투, 신음소리를 내지 않음</Col>
- </Row>
- <Row>
- <Col id="no">3</Col>
- <Col id="number">1</Col>
- <Col id="rmk">또는 발성(발관 환자)</Col>
- <Col id="cmt">끙끙대며 신음소리를 냄, 앓는 소리를 냄(아~,으~,음~,아야~), 한숨을 내쉼</Col>
- </Row>
- <Row>
- <Col id="no">3</Col>
- <Col id="number">2</Col>
- <Col id="rmk">또는 발성(발관 환자)</Col>
- <Col id="cmt">훌쩍거리거나 소리 내어 흐느껴 움, 불편함이나 통증을 짧은 단어로 표현함 (아파, 왜이래, 치워)</Col>
- </Row>
- <Row>
- <Col id="no">3</Col>
- <Col id="number">3</Col>
- <Col id="rmk">또는 발성(발관 환자)</Col>
- <Col id="cmt">큰소리를 지름, 폭언을 함, 울부짖음</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number4a_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="cmt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="number">0</Col>
- <Col id="cmt">특별한 표정이 없거나 웃음</Col>
- </Row>
- <Row>
- <Col id="number">1</Col>
- <Col id="cmt">가끔 얼굴을 찡그림, 눈살을 찌푸림, 움츠림, 무관심함</Col>
- </Row>
- <Row>
- <Col id="number">2</Col>
- <Col id="cmt">지주 또는 지속적인 턱의 떨림, 이를 악물고 있음</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number4b_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="cmt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="number">0</Col>
- <Col id="cmt">정상 자세 또는 이완됨</Col>
- </Row>
- <Row>
- <Col id="number">1</Col>
- <Col id="cmt">불안함, 거북함, 긴장됨</Col>
- </Row>
- <Row>
- <Col id="number">2</Col>
- <Col id="cmt">발로 차거나 다리를 끌어올림</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number4c_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="cmt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="number">0</Col>
- <Col id="cmt">조용히 누워있거나 정상자세, 쉽게 움직임</Col>
- </Row>
- <Row>
- <Col id="number">1</Col>
- <Col id="cmt">꿈틀댐, 몸을 앞뒤로 뒤척거림, 긴장됨</Col>
- </Row>
- <Row>
- <Col id="number">2</Col>
- <Col id="cmt">몸을 구부리고 뻣뻣함 또는 경련</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number4d_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="cmt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="number">0</Col>
- <Col id="cmt">울지 않음</Col>
- </Row>
- <Row>
- <Col id="number">1</Col>
- <Col id="cmt">끙끙댐, 흐느낌 또는 훌쩍댐</Col>
- </Row>
- <Row>
- <Col id="number">2</Col>
- <Col id="cmt">지속적인 울음, 소리침, 흐느낌, 잦은 불편감 호소</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number4e_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="cmt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="number">0</Col>
- <Col id="cmt">이완됨</Col>
- </Row>
- <Row>
- <Col id="number">1</Col>
- <Col id="cmt">가끔 안아주거나 접촉하여 안심시키는 것이 필요함. 관심을 다른 곳으로 돌리기 위해 대화가 필요함</Col>
- </Row>
- <Row>
- <Col id="number">2</Col>
- <Col id="cmt">안정되기 어려움</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number2_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="number">1</Col>
- <Col id="flag">43</Col>
- </Row>
- <Row>
- <Col id="number">2</Col>
- <Col id="flag">44</Col>
- </Row>
- <Row>
- <Col id="number">3</Col>
- <Col id="flag">45</Col>
- </Row>
- <Row>
- <Col id="number">4</Col>
- <Col id="flag">46</Col>
- </Row>
- <Row>
- <Col id="number">5</Col>
- <Col id="flag">47</Col>
- </Row>
- <Row>
- <Col id="number">6</Col>
- <Col id="flag">48</Col>
- </Row>
- <Row>
- <Col id="number">7</Col>
- <Col id="flag">49</Col>
- </Row>
- <Row>
- <Col id="number">8</Col>
- <Col id="flag">50</Col>
- </Row>
- <Row>
- <Col id="number">9</Col>
- <Col id="flag">51</Col>
- </Row>
- <Row>
- <Col id="number">10</Col>
- <Col id="flag">52</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number1_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="number">0</Col>
- <Col id="flag">53</Col>
- </Row>
- <Row>
- <Col id="number">1</Col>
- <Col id="flag">43</Col>
- </Row>
- <Row>
- <Col id="number">2</Col>
- <Col id="flag">44</Col>
- </Row>
- <Row>
- <Col id="number">3</Col>
- <Col id="flag">45</Col>
- </Row>
- <Row>
- <Col id="number">4</Col>
- <Col id="flag">46</Col>
- </Row>
- <Row>
- <Col id="number">5</Col>
- <Col id="flag">47</Col>
- </Row>
- <Row>
- <Col id="number">6</Col>
- <Col id="flag">48</Col>
- </Row>
- <Row>
- <Col id="number">7</Col>
- <Col id="flag">49</Col>
- </Row>
- <Row>
- <Col id="number">8</Col>
- <Col id="flag">50</Col>
- </Row>
- <Row>
- <Col id="number">9</Col>
- <Col id="flag">51</Col>
- </Row>
- <Row>
- <Col id="number">10</Col>
- <Col id="flag">52</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_number3_number01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="choice" type="STRING" size="256"/>
- <Column id="number" type="STRING" size="256"/>
- <Column id="img" type="STRING" size="256"/>
- <Column id="cmt" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="number">0</Col>
- <Col id="cmt">통증없음</Col>
- <Col id="flag">53</Col>
- </Row>
- <Row>
- <Col id="number">2</Col>
- <Col id="flag">44</Col>
- <Col id="cmt">약한 통증</Col>
- </Row>
- <Row>
- <Col id="number">4</Col>
- <Col id="cmt">중증도 통증</Col>
- <Col id="flag">46</Col>
- </Row>
- <Row>
- <Col id="number">6</Col>
- <Col id="cmt">심한 통증</Col>
- <Col id="flag">48</Col>
- </Row>
- <Row>
- <Col id="number">8</Col>
- <Col id="cmt">극심한 통증</Col>
- <Col id="flag">50</Col>
- </Row>
- <Row>
- <Col id="number">10</Col>
- <Col id="cmt">최악의 통증</Col>
- <Col id="flag">52</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_param" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="dressing" type="STRING" size="256"/>
- <Column id="dressingEtcStr" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_chogi_flag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="group5.ipt_part" propid="value" datasetid="ds_main" columnid="partnm"/>
- <BindItem id="item1" compid="group5.ipt_cate" propid="value" datasetid="ds_main" columnid="catenm"/>
- <BindItem id="item2" compid="group5.ipt_symp" propid="value" datasetid="ds_main" columnid="sympnm"/>
- <BindItem id="item3" compid="group5.ipt_nondrug" propid="value" datasetid="ds_main" columnid="nondrugnm"/>
- <BindItem id="item4" compid="group5.ipt_termtm" propid="value" datasetid="ds_main" columnid="termtm"/>
- <BindItem id="item5" compid="group5.ipt_termth" propid="value" datasetid="ds_main" columnid="termth"/>
- <BindItem id="item6" compid="group5.ipt_termdd" propid="value" datasetid="ds_main" columnid="termdd"/>
- <BindItem id="item72" compid="group5.chk_chogi_flag" propid="value" datasetid="ds_init_chogi_flag" columnid="flag"/>
- <BindItem id="item7" compid="group5.ipt_userlist" propid="value" datasetid="ds_main" columnid="userlistnm"/>
- <BindItem id="item8" compid="group5.ipt_bindo" propid="value" datasetid="ds_main" columnid="bindonm"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name : 경대 의료정보시스템
- * Job Name : emr_wardcarexp -> SPMNW04802
- * Creator : yjh
- * Make Date : 2016-02-19
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2016-02-19 yjh TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- include "emr_wardcarexp::SPMNW04800.xjs"; //yjh : 커밋
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- var wincloseButton = false;
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : N/A
- * Description :
- ****************************************************************************************/
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components : Form
- * Components ID : SPMNW04802
- * Event : oninit
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시
- ****************************************************************************************/
- function SPMNW04802_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj); //폼 초기화
- }
- /****************************************************************************************
- * Components : Form
- * Components ID : SPMNW04802
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 로딩 완료시
- ****************************************************************************************/
- function SPMNW04802_onload(obj:Form, e:LoadEventInfo)
- {
- fInitialize();
-
- group5.grp_number5.grd_number5a.setRealRowSize(0, 33);
- group5.grp_number5.grd_number5a.setRealRowSize(1, 33);
- group5.grp_number5.grd_number5a.setRealRowSize(2, 47);
- group5.grp_number5.grd_number5a.setRealRowSize(3, 34);
-
- group5.grp_number5.grd_number5b.setRealRowSize(0, 33);
- group5.grp_number5.grd_number5b.setRealRowSize(1, 33);
- group5.grp_number5.grd_number5b.setRealRowSize(2, 47);
- group5.grp_number5.grd_number5b.setRealRowSize(3, 62);
-
- group5.grp_number5.grd_number5c.setRealRowSize(0, 33);
- group5.grp_number5.grd_number5c.setRealRowSize(1, 33);
- group5.grp_number5.grd_number5c.setRealRowSize(2, 47);
- group5.grp_number5.grd_number5c.setRealRowSize(3, 48);
-
- group5.grp_number5.grd_number5d.setRealRowSize(0, 22);
- group5.grp_number5.grd_number5d.setRealRowSize(1, 47);
- group5.grp_number5.grd_number5d.setRealRowSize(2, 47);
- group5.grp_number5.grd_number5d.setRealRowSize(3, 22);
-
- group5.grp_number4.grd_number4a.setRealRowSize(0, 20);
- group5.grp_number4.grd_number4a.setRealRowSize(1, 36);
- group5.grp_number4.grd_number4a.setRealRowSize(2, 30);
-
-
- group5.grp_number4.grd_number4b.setRealRowSize(0, 21);
- group5.grp_number4.grd_number4b.setRealRowSize(1, 21);
- group5.grp_number4.grd_number4b.setRealRowSize(2, 22);
-
- group5.grp_number4.grd_number4c.setRealRowSize(0, 31);
- group5.grp_number4.grd_number4c.setRealRowSize(1, 32);
- group5.grp_number4.grd_number4c.setRealRowSize(2, 23);
-
- group5.grp_number4.grd_number4d.setRealRowSize(0, 20);
- group5.grp_number4.grd_number4d.setRealRowSize(1, 25);
- group5.grp_number4.grd_number4d.setRealRowSize(2, 32);
-
- group5.grp_number4.grd_number4e.setRealRowSize(0, 20);
- group5.grp_number4.grd_number4e.setRealRowSize(1, 43);
- group5.grp_number4.grd_number4e.setRealRowSize(2, 20);
- }
- /****************************************************************************************
- * Components : Form
- * Components ID : SPMNW04802
- * Event : onbeforeclose
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 닫기전
- ****************************************************************************************/
- function SPMNW04802_onbeforeclose(obj:Form, e:CloseEventInfo)
- {
- if( !wincloseButton){
- opener.frmf_setParameter("returnnull","close");
- } else {
- opener.frmf_setParameter("returnnull","confirmbutton");
- }
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button2
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 닫기버튼 클릭시
- ****************************************************************************************/
- function group5_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- close();
- }
- /****************************************************************************************
- * Components : Dataset
- * Components ID : ds_init_part_part01
- * Event : oncolumnchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 데이터셋 값 변경시
- ****************************************************************************************/
- function ds_init_part_part01_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- var etc_rmk ='';
- for(var i=0 ; i<group5.grd_part.rowcount ; i++ ){
- if( ds_init_part_part01.getColumn(i, "choice") == "1" && ds_init_part_part01.getColumn(i, "part") == "기타") {
- group5.ipt_part.visible = true;
- group5.ipt_part.value = etc_rmk;
- return;
- } else {
- group5.ipt_part.visible = false;
- if (!utlf_isNull(group5.ipt_part.value) ) {
- etc_rmk=group5.ipt_part.value;
- }
- group5.ipt_part.value = "";
-
- }
-
- }
- }
- /****************************************************************************************
- * Components : Dataset
- * Components ID : ds_init_direc_direc01
- * Event : oncolumnchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 데이터셋 값 변경시
- ****************************************************************************************/
- function ds_init_direc_direc01_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- var etc_rmk ='';
- for( var i=0 ; i<group5.grd_cate.rowcount ; i++ ){
- if( ds_init_direc_direc01.getColumn(i, "choice") == "1" && ds_init_direc_direc01.getColumn(i, "direc") == "기타") {
- group5.ipt_cate.visible = true;
- group5.ipt_cate.value=etc_rmk;
- return;
-
- } else {
- group5.ipt_cate.visible = false;
- if (!utlf_isNull(group5.ipt_cate.value)) {
-
-
- etc_rmk=group5.ipt_cate.value;
- }
- group5.ipt_cate.value = "";
- }
- }
- }
- /****************************************************************************************
- * Components : Dataset
- * Components ID : ds_init_symp_symp01
- * Event : oncolumnchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 데이터셋 값 변경시
- ****************************************************************************************/
- function ds_init_symp_symp01_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- var etc_rmk='';
- for( var i=0 ; i<group5.grd_symp.rowcount ; i++ ){
- if(ds_init_symp_symp01.getColumn(i, "choice") == "1" && ds_init_symp_symp01.getColumn(i, "symp") == "기타") {
- group5.ipt_symp.visible = true;
- group5.ipt_symp.value=etc_rmk;
- return;
- } else {
- group5.ipt_symp.visible = false;
- if (!utlf_isNull(group5.ipt_symp.value)) {
- etc_rmk=group5.ipt_symp.value;
- }
- group5.ipt_symp.value = "";
- }
- }
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_userlist
- * Event : oncellclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀 클릭시
- ****************************************************************************************/
- function group5_grd_userlist_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- //기타입력영역을 보여준다.
- //ds_init_cate_cate01에 sel컬럼이 없어서, 사용안하는 함수인듯...
- //fShowEtcInputArea();
- //dressing영역의 str을 변경한다.
- //ds_main_detlgrup_getVO 데이터셋에 값이 없어서, 사용안하는 로직인듯...
- // var cdNm = ds_main_detlgrup_getVO.getColumn(ds_init_cate_cate01.rowposition, "cdnm");
- // var isChecked = ds_main_detlgrup_getVO.getColumn(ds_init_cate_cate01.rowposition, "sel");
- //
- // if( e.col == 1 ) {
- // fChangeDressingStr(cdNm, isChecked);
- // }
- if(group5.grd_userlist.getCellProperty("Body", 0, "controlbackground") != "silver")
- {
- if(ds_init_cate_cate01.getColumn(ds_init_cate_cate01.rowposition, "choice") == "1")
- {
- ds_init_cate_cate01.setColumn(ds_init_cate_cate01.rowposition, "choice", "");
- }
- else
- {
- ds_init_cate_cate01.setColumn(ds_init_cate_cate01.rowposition, "choice", "1");
- }
- }
-
- }
- /****************************************************************************************
- * Components : Dataset
- * Components ID : ds_init_nondrugarbt_nondrug01
- * Event : oncolumnchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 데이터셋 값 변경시
- ****************************************************************************************/
- function ds_init_nondrugarbt_nondrug01_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- var etc_rmk='';
- for( var i=0 ; i<group5.grd_nondrug.rowcount ; i++ ){
- if(ds_init_nondrugarbt_nondrug01.getColumn(i, "choice") == "1" && ds_init_nondrugarbt_nondrug01.getColumn(i, "nondrug") == "기타") {
- group5.ipt_nondrug.visible = true;
- group5.ipt_nondrug.value=etc_rmk;
- } else {
- group5.ipt_nondrug.visible = false;
- if (!utlf_isNull(group5.ipt_nondrug.value)) {
- etc_rmk=group5.ipt_nondrug.value;
- }
- group5.ipt_nondrug.value = "";
- }
- }
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd
- * Event : oncellclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀 클릭시
- ****************************************************************************************/
- function group5_grd_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- switch( e.col ){
- case 0 :
- var oDsBind = eval(obj.binddataset);
-
- for( var i=0 ; i<oDsBind.rowcount ; i++ ){
- if( i == e.row ){
- oDsBind.setColumn(i, "choice", "1");
- }else{
- oDsBind.setColumn(i, "choice", "0");
- }
- }
-
- break;
-
- default :
- break;
- }
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd
- * Event : oncellclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀 클릭시
- ****************************************************************************************/
- function group5_grp_number5_grd_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- switch( e.col ){
- case 2 :
- var oDsBind = eval(obj.binddataset);
-
- for( var i=0 ; i<oDsBind.rowcount ; i++ ){
- if( i == e.row ){
- oDsBind.setColumn(i, "choice", "1");
- }else{
- oDsBind.setColumn(i, "choice", "0");
- }
- }
-
- break;
-
- default :
- break;
- }
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_number5c
- * Event : oncellclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀 클릭시
- ****************************************************************************************/
- function group5_grp_number5_grd_number5c_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- var cnt = 0;
-
- switch( e.col ){
- case 2 :
- var oDsBind = eval(obj.binddataset);
-
- for( var i=0 ; i<oDsBind.rowcount ; i++ ){
- if( i == e.row ){
- oDsBind.setColumn(i, "choice", "1");
- cnt++;
- }else{
- oDsBind.setColumn(i, "choice", "0");
- }
- }
-
- if(cnt > 0){
- for( var i=0 ; i<group5.grp_number5.grd_number5d.rowcount ; i++ ){
- if(ds_init_number5d_number01.getColumn(i, "choice") == "1") {
- ds_init_number5d_number01.setColumn(i, "choice", "0");
- }
- }
- }
-
- break;
-
- default :
- break;
- }
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_number5d
- * Event : oncellclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀 클릭시
- ****************************************************************************************/
- function group5_grp_number5_grd_number5d_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- var cnt = 0;
-
- switch( e.col ){
- case 2 :
- var oDsBind = eval(obj.binddataset);
-
- for( var i=0 ; i<oDsBind.rowcount ; i++ ){
- if( i == e.row ){
- oDsBind.setColumn(i, "choice", "1");
- cnt++;
- }else{
- oDsBind.setColumn(i, "choice", "0");
- }
- }
-
- if(cnt > 0){
- for( var i=0 ; i<group5.grp_number5.grd_number5d.rowcount ; i++ ){
- if(ds_init_number5c_number01.getColumn(i, "choice") == "1") {
- ds_init_number5c_number01.setColumn(i, "choice", "0");
- }
- }
- }
-
- break;
-
- default :
- break;
- }
- }
- /****************************************************************************************
- * Components : Dataset
- * Components ID : ds_init_tool_tool01
- * Event : oncolumnchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 데이터셋 값 변경시
- ****************************************************************************************/
- function ds_init_tool_tool01_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- //VAS삭제, grp_number4 추가_20110418_SMY
- var toolvalue = ds_init_tool_tool01.getColumn(ds_init_tool_tool01.rowposition, "flag");
- if(toolvalue == '81') { //NRS
- group5.grd_number1.visible = true;
- group5.grd_number2.visible = false;
- group5.grd_number3.visible = false;
- group5.grp_number4.visible = false;
- group5.grp_number5.visible = false;
- ds_init_number2_number01.setColumn(ds_init_number2_number01.rowposition, "choice", "");
- ds_init_number3_number01.setColumn(ds_init_number3_number01.rowposition, "choice", "");
- ds_init_number4a_number01.setColumn(ds_init_number4a_number01.rowposition, "choice", "");
- ds_init_number4b_number01.setColumn(ds_init_number4b_number01.rowposition, "choice", "");
- ds_init_number4c_number01.setColumn(ds_init_number4c_number01.rowposition, "choice", "");
- ds_init_number4d_number01.setColumn(ds_init_number4d_number01.rowposition, "choice", "");
- ds_init_number4e_number01.setColumn(ds_init_number4e_number01.rowposition, "choice", "");
-
- /*
- }else if(toolvalue == '82') { //VAS
- grd_number1.visible = false;
- grd_number2.visible = true;
- grd_number3.visible = false;
- model.resetInstanceNode("/root/init/number1/number01["+grd_number1.row+"]/choice");
- model.resetInstanceNode("/root/init/number3/number01["+grd_number3.row+"]/choice");
- */
- }else if(toolvalue == '83') { //FLACC
- group5.grd_number1.visible = false;
- group5.grd_number2.visible = false;
- group5.grd_number3.visible = false;
- group5.grp_number4.visible = true;
- group5.grp_number5.visible = false;
-
- ds_init_number1_number01.setColumn(ds_init_number1_number01.rowposition, "choice", "");
- ds_init_number2_number01.setColumn(ds_init_number2_number01.rowposition, "choice", "");
- ds_init_number3_number01.setColumn(ds_init_number3_number01.rowposition, "choice", "");
-
- }else if(toolvalue == '84') { //FACES pain rating scale
- group5.grd_number1.visible = false;
- group5.grd_number2.visible = false;
- group5.grd_number3.visible = true;
- group5.grp_number4.visible = false;
- group5.grp_number5.visible = false;
-
- ds_init_number1_number01.setColumn(ds_init_number1_number01.rowposition, "choice", "");
- ds_init_number2_number01.setColumn(ds_init_number2_number01.rowposition, "choice", "");
- ds_init_number4a_number01.setColumn(ds_init_number4a_number01.rowposition, "choice", "");
- ds_init_number4b_number01.setColumn(ds_init_number4b_number01.rowposition, "choice", "");
- ds_init_number4c_number01.setColumn(ds_init_number4c_number01.rowposition, "choice", "");
- ds_init_number4d_number01.setColumn(ds_init_number4d_number01.rowposition, "choice", "");
- ds_init_number4e_number01.setColumn(ds_init_number4e_number01.rowposition, "choice", "");
-
- //통증 이미지 셋팅
- fSetPainImg();
- }else if(toolvalue == '85') { //CNPS pain rating scale
- group5.grd_number1.visible = false;
- group5.grd_number2.visible = false;
- group5.grd_number3.visible = false;
- group5.grp_number4.visible = false;
- group5.grp_number5.visible = true;
-
- ds_init_number5a_number01.setColumn(ds_init_number5a_number01.rowposition, "choice", "");
- ds_init_number5b_number01.setColumn(ds_init_number5b_number01.rowposition, "choice", "");
- ds_init_number5c_number01.setColumn(ds_init_number5c_number01.rowposition, "choice", "");
- }
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button1
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 선택버튼 클릭시
- ****************************************************************************************/
- function group5_button1_onclick(obj:Button, e:ClickEventInfo)
- {
- fselect("2");
- }
- function group5_grd_part_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- if(group5.grd_part.getCellProperty("Body", 0, "controlbackground") != "silver")
- {
- if(ds_init_part_part01.getColumn(ds_init_part_part01.rowposition, "choice") == "1")
- {
- ds_init_part_part01.setColumn(ds_init_part_part01.rowposition, "choice", "");
- }
- else
- {
- ds_init_part_part01.setColumn(ds_init_part_part01.rowposition, "choice", "1");
- }
- }
- }
- function group5_grd_cate_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- if(group5.grd_cate.getCellProperty("Body", 0, "controlbackground") != "silver")
- {
- if(ds_init_direc_direc01.getColumn(ds_init_direc_direc01.rowposition, "choice") == "1")
- {
- ds_init_direc_direc01.setColumn(ds_init_direc_direc01.rowposition, "choice", "");
- }
- else
- {
- ds_init_direc_direc01.setColumn(ds_init_direc_direc01.rowposition, "choice", "1");
- }
- }
- }
- function group5_grd_symp_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- if(group5.grd_symp.getCellProperty("Body", 0, "controlbackground") != "silver")
- {
- if(ds_init_symp_symp01.getColumn(ds_init_symp_symp01.rowposition, "choice") == "1")
- {
- ds_init_symp_symp01.setColumn(ds_init_symp_symp01.rowposition, "choice", "");
- }
- else
- {
- ds_init_symp_symp01.setColumn(ds_init_symp_symp01.rowposition, "choice", "1");
- }
- }
- }
- function group5_grd_nondrug_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- if(group5.grd_nondrug.getCellProperty("Body", 0, "controlbackground") != "silver")
- {
- if(ds_init_nondrugarbt_nondrug01.getColumn(ds_init_nondrugarbt_nondrug01.rowposition, "choice") == "1")
- {
- ds_init_nondrugarbt_nondrug01.setColumn(ds_init_nondrugarbt_nondrug01.rowposition, "choice", "");
- }
- else
- {
- ds_init_nondrugarbt_nondrug01.setColumn(ds_init_nondrugarbt_nondrug01.rowposition, "choice", "1");
- }
- }
- }
- //초기평가 코드
- //ds_gubnflag.setColumn(0, "gubnflag", "02");
- //
-
-
- //2017.07.17_초기평가 로직 수정(초기평가 없이 재평가 되도록 수정)
- function group5_switch1_rec_grp_sea_grp_save_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- fselect("1");
- }
- function ds_init_cate_cate01_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- var etc_rmk='';
- for( var i = 0 ; i < group5.grd_userlist.rowcount ; i++ ) {
- if(ds_init_cate_cate01.getColumn(i, "choice") == "1" && ds_init_cate_cate01.getColumn(i, "cate") == "기타") {
- group5.ipt_userlist.visible = true;
- group5.ipt_userlist.value = etc_rmk;
- return;
- } else {
- group5.ipt_userlist.visible = false;
- if( !utlf_isNull(group5.ipt_userlist.value) ) {
- etc_rmk = group5.ipt_userlist.value;
- }
- group5.ipt_userlist.value = "";
- }
- }
- }
- function ds_init_bindo_bindo01_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- var etc_rmk='';
- for( var i=0 ; i < group5.grd_bindo.rowcount ; i++ ){
- if(ds_init_bindo_bindo01.getColumn(i, "choice") == "1" && ds_init_bindo_bindo01.getColumn(i, "bindo") == "기타") {
- group5.ipt_bindo.visible = true;
- group5.ipt_bindo.value=etc_rmk;
- } else {
- group5.ipt_bindo.visible = false;
- if (!utlf_isNull(group5.ipt_bindo.value)) {
- etc_rmk=group5.ipt_bindo.value;
- }
- group5.ipt_bindo.value = "";
- }
- }
- }
- ]]></Script>
- </Form>
- </FDL>
|