123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <!--
- * Name : SPCIT00400_만족도설문지구성관리
- * Summary : 만족도 설문지 구성관리
- * Programmer : 황현석
- * Date Written : 2010.08.03
- * History :
- * Remark :
- -->
- <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>설문지 구성관리</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <qestitem>
- <qestmngt>
- <qestitemgrupcnt/>
- <humtrafactposcd/>
- <qpaprseqno/>
- <kindcd>B</kindcd>
- </qestmngt>
- <buttonmode>S</buttonmode>
- <qestgruplist>
- <qestitemgrupnmlist>
- <qestitemgrupnm1/>
- <qestitemgrupnm2/>
- <qestitemgrupnm3/>
- <qestitemgrupnm4/>
- <qestitemgrupnm5/>
- <qestitemgrupnm6/>
- <qestitemgrupnm7/>
- <qestitemgrupnm8/>
- <qestitemgrupnm9/>
- <qestitemgrupnm10/>
- <qestitemgrupnm11/>
- <qestitemgrupnm12/>
- <qestitemgrupnm13/>
- <qestitemgrupnm14/>
- </qestitemgrupnmlist>
- <qestitemcntlist>
- <qestitemcnt1/>
- <qestitemcnt2/>
- <qestitemcnt3/>
- <qestitemcnt4/>
- <qestitemcnt5/>
- <qestitemcnt6/>
- <qestitemcnt7/>
- <qestitemcnt8/>
- <qestitemcnt9/>
- <qestitemcnt10/>
- <qestitemcnt11/>
- <qestitemcnt12/>
- <qestitemcnt13/>
- <qestitemcnt14/>
- </qestitemcntlist>
- <qestuseynlist>
- <qestuseyn1/>
- <qestuseyn2/>
- <qestuseyn3/>
- <qestuseyn4/>
- <qestuseyn5/>
- <qestuseyn6/>
- <qestuseyn7/>
- <qestuseyn8/>
- <qestuseyn9/>
- <qestuseyn10/>
- <qestuseyn11/>
- <qestuseyn12/>
- <qestuseyn13/>
- <qestuseyn14/>
- </qestuseynlist>
- <qestitemgrupdesclist>
- <qestitemgrupdesc1/>
- <qestitemgrupdesc2/>
- <qestitemgrupdesc3/>
- <qestitemgrupdesc4/>
- <qestitemgrupdesc5/>
- <qestitemgrupdesc6/>
- <qestitemgrupdesc7/>
- <qestitemgrupdesc8/>
- <qestitemgrupdesc9/>
- <qestitemgrupdesc10/>
- <qestitemgrupdesc11/>
- <qestitemgrupdesc12/>
- <qestitemgrupdesc13/>
- <qestitemgrupdesc14/>
- </qestitemgrupdesclist>
- <qpaprseqno/>
- <baseqestgrupyn/>
- <qestitemgrupseqno/>
- </qestgruplist>
- <gruplistgrid/>
- <satsfctqestlist>
- <qestitemgrupcnt/>
- <humtrafactposcd/>
- </satsfctqestlist>
- </qestitem>
- </main>
- <send>
- <qpaprseqno/>
- </send>
- <temp>
- <qestgruplist/>
- <save>
- <qpaprseqno/>
- <qestitemgrupseqno/>
- </save>
- <gruplist>
- <qpaprseqno/>
- <qestitemgrupseqno/>
- <qestitemgrupnm/>
- <qestitemcnt/>
- <qestuseyn/>
- <qestitemgrupdesc/>
- </gruplist>
- </temp>
- <init>
- <C0108list/>
- </init>
- </root>
- </instance>
- <submission id="TRCIT00301" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/satsfctqestlist"/>
- <submission id="TRCIT00302" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/temp/qestgruplist"/>
- <submission id="TXCIT00501" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/main/qestitem"/>
- <submission id="TXCIT00502" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/temp/save"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
-
- // 공통코드
- zbcfGetCodeList( new Array("C0108"), new Array("/root/init/C0108list"));
-
- // 그리드 초기화
- model.removeNodeset(grd_gruplist.attribute("nodeset"));
-
- // 부모창의 파람값을 가져온다.
- var qpaprseqno = opener.window.javascript.getParameter("qpaprseqno");
-
- model.setValue("/root/send/qpaprseqno", qpaprseqno);
- model.setValue("/root/main/qestitem/qestgruplist/qpaprseqno", qpaprseqno);
- model.setValue("/root/main/qestitem/qestmngt/qpaprseqno", qpaprseqno);
-
- // 화면 로드시 기초설문을 부모창의 값으로 설정
- var humtrafactposcd = opener.window.javascript.getParameter("humtrafactposcd");
- model.setValue("/root/main/qestitem/qestmngt/humtrafactposcd", humtrafactposcd);
- // var poscd = model.getValue("/root/main/qestitem/qestmngt/humtrafactposcd");
-
- // 화면 로드시 문항 그룹수를 부모창의 값으로 설정
- var qestitemgrupcnt = opener.window.javascript.getParameter("qestitemgrupcnt");
- if (qestitemgrupcnt == "0") {
- model.setValue("/root/main/qestitem/qestmngt/qestitemgrupcnt", "1");
- } else {
- model.setValue("/root/main/qestitem/qestmngt/qestitemgrupcnt", qestitemgrupcnt);
- }
- var kindcd = model.getValue("/root/main/qestitem/qestmngt/qestitemgrupcnt");
-
- // 설문지 구성을 조회 한다.
- if (submit("TRCIT00302")){
- for ( i = 0; i <= qestitemgrupcnt; i++) {
- var k = i + 1;
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemgrupnm"));
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestuseyn"));
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemgrupdesc"));
- model.setValue("/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemcnt"));
- }
- }
-
- // 화면 오픈시의 활성화여부
- var stinqestcnt = opener.window.javascript.getParameter("stinqestcnt");
- if (stinqestcnt == 0) {
- btn_itemmngt1.disabled = true;
- btn_itemmngt2.disabled = true;
- } else {
- fSetButtons();
- }
-
- for ( var i = 1; i <= 65; i++ ) {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i);
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i);
-
- qestitemgrupnm.disabled = true;
- qestitemgrupdesc.disabled = true;
- }
-
-
- cmb_qestitemgrupcnt.disabled = true;
- cmb_humtrafactposcd.disabled = true;
-
- fSetQestKind(kindcd); // 문항 그룹수에 따른 화면전환
- model.refresh();
-
- ]]>
- </script>
- <script type="javascript">
- <![CDATA[
- // 수정모드시 활성화 여부
- function fSetButtons() {
- var buttonmode = model.getValue("/root/main/qestitem/buttonmode");
- var poscd = model.getValue("/root/main/qestitem/qestmngt/humtrafactposcd");
-
- if (buttonmode == "S") {
- for( var i = 1; i <=65; i++) {
- var itemmngt = document.controls("btn_itemmngt" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i);
-
- itemmngt.disabled = false; // 문항관리
- qestuseyn.disabled = true; // 설명사용여부
- }
-
- btn_bfqpapr.disabled = true; // 이전설문가져오기
- btn_updt.disabled = false; // 수정모드
- btn_save.disabled = true; // 저장
-
- } else if (buttonmode == "U") {
- for( var i = 1; i <=65; i++) {
- var itemmngt = document.controls("btn_itemmngt" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i);
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i);
-
- itemmngt.disabled = true; // 문항관리
- qestuseyn.disabled = false; // 설명사용여부
- qestitemgrupnm.disabled = false; // 문항그룹명
- }
-
- btn_bfqpapr.disabled = false; // 이전설문가져오기
- btn_updt.disabled = true; // 수정모드
- btn_save.disabled = false; // 저장
-
- fSetPosKind(poscd);
- fSetUseYN();
-
- cmb_qestitemgrupcnt.disabled = false;
- cmb_humtrafactposcd.disabled = false;
- }
- }
-
- // 기초설문 위치에 대한 기초설문 활성 여부
- function fSetPosKind(poscd) {
-
- if (poscd == "0") {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1", "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1", "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1", "");
-
- for( var i = 1; i <= 65; i++) {
- if (i == "1") {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i) ;
-
- qestitemgrupdesc.disabled = true;
- qestuseyn.disabled = true;
- qestitemgrupnm.disabled = true;
-
- } else if (i == "3") {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i) ;
-
- qestitemgrupdesc.disabled = true;
- qestuseyn.disabled = true;
- qestitemgrupnm.disabled = true;
-
- } else if (i == "6") {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i) ;
-
- qestitemgrupdesc.disabled = true;
- qestuseyn.disabled = true;
- qestitemgrupnm.disabled = true;
-
- } else if (i == "10") {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i) ;
-
- qestitemgrupdesc.disabled = true;
- qestuseyn.disabled = true;
- qestitemgrupnm.disabled = true;
-
- } else if (i == "15") {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i) ;
-
- qestitemgrupdesc.disabled = true;
- qestuseyn.disabled = true;
- qestitemgrupnm.disabled = true;
-
- } else if (i == "21") {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i) ;
-
- qestitemgrupdesc.disabled = true;
- qestuseyn.disabled = true;
- qestitemgrupnm.disabled = true;
-
- } else if (i == "28") {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i) ;
-
- qestitemgrupdesc.disabled = true;
- qestuseyn.disabled = true;
- qestitemgrupnm.disabled = true;
-
- } else if (i == "36") {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i) ;
-
- qestitemgrupdesc.disabled = true;
- qestuseyn.disabled = true;
- qestitemgrupnm.disabled = true;
-
- } else if (i == "45") {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i) ;
-
- qestitemgrupdesc.disabled = true;
- qestuseyn.disabled = true;
- qestitemgrupnm.disabled = true;
-
- } else if (i == "55") {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i) ;
-
- qestitemgrupdesc.disabled = true;
- qestuseyn.disabled = true;
- qestitemgrupnm.disabled = true;
- }
- }
- } else {
- for( var i = 1; i <= 65; i++) {
- if (i == "1") {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
-
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
-
- qestuseyn.disabled = false;
- qestitemgrupnm.disabled = false;
- } else if (i == "3") {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
-
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
-
- qestuseyn.disabled = false;
- qestitemgrupnm.disabled = false;
-
- } else if (i == "6") {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
-
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
-
- qestuseyn.disabled = false;
- qestitemgrupnm.disabled = false;
-
- } else if (i == "10") {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
-
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
-
- qestuseyn.disabled = false;
- qestitemgrupnm.disabled = false;
-
- } else if (i == "15") {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
-
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
-
- qestuseyn.disabled = false;
- qestitemgrupnm.disabled = false;
-
- } else if (i == "21") {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
-
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
-
- qestuseyn.disabled = false;
- qestitemgrupnm.disabled = false;
-
- } else if (i == "28") {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
-
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
-
- qestuseyn.disabled = false;
- qestitemgrupnm.disabled = false;
-
- } else if (i == "36") {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
-
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
-
- qestuseyn.disabled = false;
- qestitemgrupnm.disabled = false;
-
- } else if (i == "45") {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
-
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
-
- qestuseyn.disabled = false;
- qestitemgrupnm.disabled = false;
-
- } else if (i == "55") {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
-
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i) ;
- var qestuseyn = document.controls("chk_qestuseyn" + i) ;
-
- qestuseyn.disabled = false;
- qestitemgrupnm.disabled = false;
- }
- }
- }
- model.refresh();
- }
-
- // 문항 그룹수에 따른 화면 전환
- function fSetQestKind(kindcd) {
- var poscd = model.getValue("/root/main/qestitem/qestmngt/humtrafactposcd");
-
- if (kindcd == "0") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=65; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "hidden";
- }
- if (poscd != "0") {
- var name = document.controls("group1");
- name.attribute("visibility") = "visible";
- }
-
- }else if(kindcd == "1") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=2; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 3; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
-
- model.toggle("case1");
-
- } else if (kindcd == "2" ) {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=5; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 4; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
- model.toggle("case2");
-
- } else if (kindcd == "3") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=9; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 5; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
- model.toggle("case3");
-
- } else if (kindcd == "4") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=14; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 6; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
- model.toggle("case4");
-
- } else if (kindcd == "5") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=20; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 7; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
- model.toggle("case5");
-
- } else if (kindcd == "6") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=27; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 8; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
- model.toggle("case6");
-
- } else if (kindcd == "7") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=35; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 9; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
- model.toggle("case7");
-
- } else if (kindcd == "8") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=44; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 10; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
- model.toggle("case8");
-
- } else if (kindcd == "9") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=54; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 11; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
- model.toggle("case9");
-
- } else if (kindcd == "10") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=65; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 12; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
- model.toggle("case10");
-
- } else if (kindcd == "11") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=65; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- for (var j = 13; j<=14; j++) {
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ j, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ j, "");
- }
- model.toggle("case11");
-
- } else if (kindcd == "12") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=65; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- // 해당되지 않은 인스턴스 초기화
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm14", "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn14", "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc14", "");
-
- model.toggle("case12");
-
- } else if (kindcd == "13") {
- // 해당되지 않은 그룹은 숨긴다.
- for (var i = 1; i<=65; i++ ) {
- var name = document.controls("group" + i);
- name.attribute("visibility") = "visible";
- }
- model.toggle("case13");
- }
-
- // 그룹수 변경시 설명사용 체크박스를 확인
- var mode = model.getValue("/root/main/qestitem/buttonmode");
- if (mode == "U") {
- fSetUseYN();
- }
-
- model.refresh();
-
- }
-
- // 설명사용 값에 대한 활성화여부
- function fSetUseYN() {
- var humtrafactposcd = model.getValue("/root/main/qestitem/qestmngt/humtrafactposcd");
- var qestitemgrupcnt = model.getValue("/root/main/qestitem/qestmngt/qestitemgrupcnt");
-
- var j =0;
-
- if (qestitemgrupcnt == 0 && humtrafactposcd != 0) {
-
- j = j+1;
-
- } else {
- for(var m = 1; m <= qestitemgrupcnt; m++) {
- j = j+m;
- }
- }
-
- for (var i = 0 ; i <= qestitemgrupcnt; i++) {
- k = i + 1;
-
- var qestuseyn = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn" + k);
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + j);
-
- if (qestuseyn == "Y") {
- qestitemgrupdesc.disabled = false;
- }
- j = j + 1;
- }
-
- }
-
- // 설문가져오기시 화면 조회
- function fSetRelod() {
- var qestitemgrupcnt = model.getValue("/root/main/qestitem/qestmngt/qestitemgrupcnt");
- var kindcd = model.getValue("/root/main/qestitem/qestmngt/qestitemgrupcnt");
-
- for (var i=0; i<=qestitemgrupcnt; i++) {
- var k = i + 1;
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ k, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt"+ k, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ k, "");
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ k, "");
- }
-
- // 설문지 구성을 조회 한다.
- if (submit("TRCIT00302")){
- for ( i = 0; i <= qestitemgrupcnt; i++) {
- var k = i + 1;
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemgrupnm"));
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestuseyn"));
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemgrupdesc"));
- model.setValue("/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemcnt"));
- }
- }
-
- // 화면 활성화여부
- for ( var i = 1; i <= 65; i++ ) {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i);
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i);
-
- qestitemgrupnm.disabled = true;
- qestitemgrupdesc.disabled = true;
- }
-
- cmb_qestitemgrupcnt.disabled = true;
- cmb_humtrafactposcd.disabled = true;
-
- model.refresh();
-
- model.setValue("/root/main/qestitem/buttonmode", "S");
- fSetButtons();
- fSetQestKind(kindcd);
-
- }
-
- // 입력 부분
- function fSaveQPapr() {
- var qestitemgrupcnt = model.getValue("/root/main/qestitem/qestmngt/qestitemgrupcnt");
- var humtrafactposcd = model.getValue("/root/main/qestitem/qestmngt/humtrafactposcd");
- // 그리드에 값을 저장한다음에 그리드 데이터를 전송한다.
- for (var i=0; i<=qestitemgrupcnt; i++) {
-
- var k = i+1;
- // 설문지 일련번호
- var qpaprseqno = new Array(model.getValue(("/root/main/qestitem/qestgruplist/qpaprseqno")));
- // 설문지 문항 그룹 일련번호
- var humtrafactposcd = model.getValue("/root/main/qestitem/qestmngt/humtrafactposcd");
- // 설문지문항그룹일련번호
- var qestitemgrupseqno = k;
- // 문항 그룹명
- var qestitemgrupnm = new Array("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm" + k);
- // 설문 개수
- var qestitemcnt = new Array("/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt" + k);
- // 설명사용 여부
- var qestuseyn = new Array("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn" + k);
- // 설명 내용
- var qestitemgrupdesc = new Array("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc" + k);
- // 기초설문 그룹설문 구분 Y = 기초설문
- var baseqestgrupyn = new Array("/root/main/qestitem/qestgruplist/baseqestgrupyn");
-
- grd_gruplist.additem(false);
-
- qestitemgrupnm = model.getValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm" + k);
- qestitemcnt = model.getValue("/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt" + k);
- qestuseyn = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn" + k);
- qestitemgrupdesc = model.getValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc" + k);
-
- model.setValue("/root/temp/gruplist[" + grd_gruplist.row + " ]/qpaprseqno", qpaprseqno);
- model.setValue("/root/temp/gruplist[" + grd_gruplist.row + " ]/qestitemgrupseqno", qestitemgrupseqno);
- model.setValue("/root/temp/gruplist[" + grd_gruplist.row + " ]/qestitemgrupnm", qestitemgrupnm);
- model.setValue("/root/temp/gruplist[" + grd_gruplist.row + " ]/qestitemcnt", qestitemcnt);
- model.setValue("/root/temp/gruplist[" + grd_gruplist.row + " ]/qestuseyn", qestuseyn);
- model.setValue("/root/temp/gruplist[" + grd_gruplist.row + " ]/qestitemgrupdesc", qestitemgrupdesc);
-
- }
-
- // 입력시 히든 그리드 파리채로 날리기
- var updt_list = getGridUpdateData(grd_gruplist);
- if (updt_list != "") {
- model.setValue("/root/main/qestitem/gruplistgrid", grd_gruplist.getUpdateData());
- }
-
- var rtn = messageBox("설문지 구성을", "Q002");
-
- if (rtn == 6) {
- submit("TXCIT00501");
- messageBox("설문지 문항이 저장이", "I002");
- } else if (rtn == 7) {
- model.removeNodeset("/root/tmep/gruplist");
- }
-
- // 저장된 값 제 조회
- if (submit("TRCIT00302")){
- for ( i = 0; i <= qestitemgrupcnt; i++) {
- var k = i + 1;
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemgrupnm"));
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestuseyn"));
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemgrupdesc"));
- model.setValue("/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemcnt"));
- }
- }
-
- var kindcd = model.getValue("/root/main/qestitem/qestmngt/qestitemgrupcnt");
-
- // 화면 활성화여부
- for ( var i = 1; i <= 65; i++ ) {
- var qestitemgrupnm = document.controls("ipt_qestitemgrupnm" + i);
- var qestitemgrupdesc = document.controls("tar_qestitemgrupdesc" + i);
-
- qestitemgrupnm.disabled = true;
- qestitemgrupdesc.disabled = true;
- }
-
- cmb_qestitemgrupcnt.disabled = true;
- cmb_humtrafactposcd.disabled = true;
-
- model.refresh();
-
- model.setValue("/root/main/qestitem/buttonmode", "S");
- fSetButtons();
- fSetQestKind(kindcd);
-
- }
-
- // 문항관리 팝업 화면오픈시 넘어갈 값 지정.
- function fViewCell(refNm, refSeqNo, refGrupNo) {
- var qpaprseqno = model.getValue(refSeqNo);
- var qestitemgrupseqno = model.getValue(refGrupNo);
- var qestitemgrupnm = model.getValue(refNm);
- var qestitemgrupcnt = model.getValue("/root/main/qestitem/qestmngt/qestitemgrupcnt");
-
- setParameter("qpaprseqno", qpaprseqno);
- setParameter("qestitemgrupseqno", qestitemgrupseqno);
- setParameter("qestitemgrupnm", qestitemgrupnm);
-
- model.setValue("/root/temp/save/qpaprseqno", qpaprseqno);
- model.setValue("/root/temp/save/qestitemgrupseqno", qestitemgrupseqno);
-
- modal("SPCIT00600");
-
- // 설문문항개수 업데이트
- submit("TXCIT00502");
- // 그룹정보 제 조회
- if (submit("TRCIT00302")){
- for ( i = 0; i <= qestitemgrupcnt; i++) {
- var k = i + 1;
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemgrupnm"));
- model.setValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestuseyn"));
- model.setValue("/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemgrupdesc"));
- model.setValue("/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt"+ k, model.getValue("/root/temp/qestgruplist[" + k + "]/qestitemcnt"));
- }
- }
-
- clearParameter("qpaprseqno");
- clearParameter("qestitemgrupseqno");
- clearParameter("qestitemgrupnm");
-
- model.refresh();
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body pagewidth="700" pageheight="505" style="border-color:#c0c0c0; margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <line id="line3" class="line_1" style="x1:0px; y1:26px; x2:680px; y2:26px; "/>
- <button id="btn_bfqpapr" class="btn2_letter10" style="left:438px; top:5px; width:130px; height:19px; ">
- <caption>이전 설문지 가져오기</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var receive_qestitemgrupcnt_path = "/root/main/qestitem/qestmngt/qestitemgrupcnt";
- var receive_humtrafactposcd_path = "/root/main/qestitem/qestmngt/humtrafactposcd";
- var qpaprseqno = model.getValue("/root/main/qestitem/qestmngt/qpaprseqno");
- var kindcd = model.getValue("/root/main/qestitem/qestmngt/kindcd");
-
- setParameter("receive_qestitemgrupcnt_path", receive_qestitemgrupcnt_path);
- setParameter("receive_humtrafactposcd_path", receive_humtrafactposcd_path);
- setParameter("qpaprseqno", qpaprseqno);
- setParameter("kindcd", kindcd);
-
- modal("SPCIT00700");
-
- clearParameter("receive_humtrafactposcd_path");
- clearParameter("receive_humtrafactposcd_path");
- clearParameter("qpaprseqno");
- clearParameter("kindcd");
-
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="btn_updt" class="btn2_letter4" style="left:571px; top:5px; width:64px; height:19px; ">
- <caption>수정모드</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- // 버튼에 변수를 넣어주고 클릭 여부에 따라 활성화 여부를 나타낸다. S : 상태 , U : 수정
- model.setValue("/root/main/qestitem/buttonmode", "U");
- fSetButtons();
- ]]>
- </script>
- </button>
- <button id="btn_save" class="btn5_letter2" style="left:638px; top:5px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSaveQPapr();
- ]]>
- </script>
- </button>
- <caption id="caption11" class="cell_1" style="left:0px; top:31px; width:100px; height:23px; ">문항 그룹수</caption>
- <select1 id="cmb_qestitemgrupcnt" ref="/root/main/qestitem/qestmngt/qestitemgrupcnt" appearance="minimal" style="left:103px; top:32px; width:240px; height:19px; ">
- <choices>
- <item>
- <label>없음</label>
- <value>0</value>
- </item>
- <item>
- <label>1</label>
- <value>1</value>
- </item>
- <item>
- <label>2</label>
- <value>2</value>
- </item>
- <item>
- <label>3</label>
- <value>3</value>
- </item>
- <item>
- <label>4</label>
- <value>4</value>
- </item>
- <item>
- <label>5</label>
- <value>5</value>
- </item>
- <item>
- <label>6</label>
- <value>6</value>
- </item>
- <item>
- <label>7</label>
- <value>7</value>
- </item>
- <item>
- <label>8</label>
- <value>8</value>
- </item>
- <item>
- <label>9</label>
- <value>9</value>
- </item>
- <item>
- <label>10</label>
- <value>10</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var kindcd = model.getValue("/root/main/qestitem/qestmngt/qestitemgrupcnt");
-
- fSetQestKind(kindcd);
-
- //fNewQestCntMsg();
- ]]>
- </script>
- </select1>
- <caption id="caption12" class="cell_1" style="left:347px; top:31px; width:100px; height:23px; ">기초설문 위치</caption>
- <select1 id="cmb_humtrafactposcd" ref="/root/main/qestitem/qestmngt/humtrafactposcd" appearance="minimal" style="left:450px; top:32px; width:230px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/C0108list/C0108">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var poscd = model.getValue("/root/main/qestitem/qestmngt/humtrafactposcd");
- fSetPosKind(poscd);
- ]]>
- </script>
- </select1>
- <switch id="switch1" visibility="visible" style="left:0px; top:55px; width:680px; height:402px; ">
- <case id="case1" selected="true">
- <group id="group1" style="left:0px; top:0px; width:660px; height:66; ">
- <line id="line46" class="line_2" style="x1:0px; y1:64px; x2:660px; y2:64px; "/>
- <caption id="caption135" class="cell_1" style="left:0px; top:0px; width:100px; height:66; ">기초설문</caption>
- <input id="ipt_qestitemgrupnm1" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption136" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="ipt_qestitemcnt1" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt1" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption137" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt1" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1";
- var refSeqNo = "/root/temp/qestgruplist["+ 1 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 1 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn1" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc1.disabled = false;
- } else {
- tar_qestitemgrupdesc1.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc1" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group2" style="left:0px; top:67px; width:660px; height:66px; ">
- <line id="line57" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption168" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 1</caption>
- <input id="ipt_qestitemgrupnm2" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption169" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input154" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt2" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption170" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt2" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2";
- var refSeqNo = "/root/temp/qestgruplist["+ 2 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 2 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn2" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc2.disabled = false;
- } else {
- tar_qestitemgrupdesc2.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc2" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc2" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- </case>
- <case id="case2">
- <group id="group3" style="left:0px; top:0px; width:660px; height:66; ">
- <line id="line1" class="line_2" style="x1:0px; y1:64px; x2:660px; y2:64px; "/>
- <caption id="caption1" class="cell_1" style="left:0px; top:0px; width:100px; height:66; ">기초설문</caption>
- <input id="ipt_qestitemgrupnm3" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption2" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="ipt_qestitemcnt2" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt1" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption3" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt3" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1";
- var refSeqNo = "/root/temp/qestgruplist["+ 1 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 1 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn3" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc3.disabled = false;
- } else {
- tar_qestitemgrupdesc3.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc3" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group4" style="left:0px; top:67px; width:660px; height:66px; ">
- <line id="line2" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption4" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 1</caption>
- <input id="ipt_qestitemgrupnm4" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption5" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input4" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt2" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption6" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt4" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2";
- var refSeqNo = "/root/temp/qestgruplist["+ 2 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 2 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn4" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc4.disabled = false;
- } else {
- tar_qestitemgrupdesc4.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc4" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc2" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group5" style="left:0px; top:134px; width:660px; height:66px; ">
- <line id="line7" class="line_3" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption18" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 2</caption>
- <input id="ipt_qestitemgrupnm5" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption19" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input12" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt3" disabled="true" style="left:459px; top:1px; width:30px; height:19px; "/>
- <caption id="caption20" style="left:493px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt5" class="btn2_letter4" style="left:518px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3";
- var refSeqNo = "/root/temp/qestgruplist["+ 3 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 3 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn5" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3" overflow="visible" appearance="full" style="left:585px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc5.disabled = false;
- } else {
- tar_qestitemgrupdesc5.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc5" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc3" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- </case>
- <case id="case3">
- <group id="group6" style="left:0px; top:0px; width:660px; height:66; ">
- <line id="line4" class="line_2" style="x1:0px; y1:64px; x2:660px; y2:64px; "/>
- <caption id="caption7" class="cell_1" style="left:0px; top:0px; width:100px; height:66; ">기초설문</caption>
- <input id="ipt_qestitemgrupnm6" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption8" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="ipt_qestitemcnt3" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt1" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption9" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt6" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1";
- var refSeqNo = "/root/temp/qestgruplist["+ 1 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 1 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn6" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc6.disabled = false;
- } else {
- tar_qestitemgrupdesc6.disabled = true;
- }
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
-
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-deselect">
- <![CDATA[
-
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc6" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group7" style="left:0px; top:67px; width:660px; height:66px; ">
- <line id="line5" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption10" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 1</caption>
- <input id="ipt_qestitemgrupnm7" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption13" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input9" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt2" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption14" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt7" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2";
- var refSeqNo = "/root/temp/qestgruplist["+ 2 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 2 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn7" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc7.disabled = false;
- } else {
- tar_qestitemgrupdesc7.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc7" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc2" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group8" style="left:0px; top:134px; width:660px; height:66px; ">
- <line id="line9" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption24" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 2</caption>
- <input id="ipt_qestitemgrupnm8" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption25" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input19" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt3" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption26" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt8" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3";
- var refSeqNo = "/root/temp/qestgruplist["+ 3 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 3 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn8" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc8.disabled = false;
- } else {
- tar_qestitemgrupdesc8.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc8" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc3" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group9" style="left:0px; top:201px; width:660px; height:66px; ">
- <line id="line10" class="line_3" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption27" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 3</caption>
- <input id="ipt_qestitemgrupnm9" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption28" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input22" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt4" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption29" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt9" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4";
- var refSeqNo = "/root/temp/qestgruplist["+ 4 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 4 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn9" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc9.disabled = false;
- } else {
- tar_qestitemgrupdesc9.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc9" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc4" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- </case>
- <case id="case4">
- <group id="group10" style="left:0px; top:0px; width:660px; height:66; ">
- <line id="line6" class="line_2" style="x1:0px; y1:64px; x2:660px; y2:64px; "/>
- <caption id="caption15" class="cell_1" style="left:0px; top:0px; width:100px; height:66; ">기초설문</caption>
- <input id="ipt_qestitemgrupnm10" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1" disabled="false" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption16" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="ipt_qestitemcnt4" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt1" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption17" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt10" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1";
- var refSeqNo = "/root/temp/qestgruplist["+ 1 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 1 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn10" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc10.disabled = false;
- } else {
- tar_qestitemgrupdesc10.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc10" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group11" style="left:0px; top:67px; width:660px; height:66px; ">
- <line id="line8" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption21" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 1</caption>
- <input id="ipt_qestitemgrupnm11" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption22" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input17" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt2" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption23" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt11" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2";
- var refSeqNo = "/root/temp/qestgruplist["+ 2 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 2 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn11" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc11.disabled = false;
- } else {
- tar_qestitemgrupdesc11.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc11" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc2" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group12" style="left:0px; top:134px; width:660px; height:66px; ">
- <line id="line13" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption36" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 2</caption>
- <input id="ipt_qestitemgrupnm12" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption37" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input30" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt3" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption38" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt12" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3";
- var refSeqNo = "/root/temp/qestgruplist["+ 3 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 3 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn12" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc12.disabled = false;
- } else {
- tar_qestitemgrupdesc12.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc12" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc3" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group13" style="left:0px; top:201px; width:660px; height:66px; ">
- <line id="line14" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption39" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 3</caption>
- <input id="ipt_qestitemgrupnm13" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption40" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input33" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt4" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption41" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt13" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4";
- var refSeqNo = "/root/temp/qestgruplist["+ 4 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 4 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn13" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc13.disabled = false;
- } else {
- tar_qestitemgrupdesc13.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc13" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc4" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group14" style="left:0px; top:268px; width:660px; height:66px; ">
- <line id="line15" class="line_3" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption42" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 4</caption>
- <input id="ipt_qestitemgrupnm14" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption43" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input36" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt5" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption44" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt14" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5";
- var refSeqNo = "/root/temp/qestgruplist["+ 5 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 5 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn14" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc14.disabled = false;
- } else {
- tar_qestitemgrupdesc14.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc14" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc5" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- </case>
- <case id="case5">
- <group id="group15" style="left:0px; top:0px; width:660px; height:66; ">
- <line id="line11" class="line_2" style="x1:0px; y1:64px; x2:660px; y2:64px; "/>
- <caption id="caption30" class="cell_1" style="left:0px; top:0px; width:100px; height:66; ">기초설문</caption>
- <input id="ipt_qestitemgrupnm15" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1" disabled="false" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption31" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="ipt_qestitemcnt5" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt1" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption32" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt15" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1";
- var refSeqNo = "/root/temp/qestgruplist["+ 1 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 1 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn15" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc15.disabled = false;
- } else {
- tar_qestitemgrupdesc15.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc15" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group16" style="left:0px; top:67px; width:660px; height:66px; ">
- <line id="line12" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption33" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 1</caption>
- <input id="ipt_qestitemgrupnm16" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption34" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input28" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt2" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption35" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt16" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2";
- var refSeqNo = "/root/temp/qestgruplist["+ 2 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 2 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn16" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc16.disabled = false;
- } else {
- tar_qestitemgrupdesc16.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc16" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc2" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group17" style="left:0px; top:134px; width:660px; height:66px; ">
- <line id="line18" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption51" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 2</caption>
- <input id="ipt_qestitemgrupnm17" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption52" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input44" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt3" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption53" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt17" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3";
- var refSeqNo = "/root/temp/qestgruplist["+ 3 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 3 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn17" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc17.disabled = false;
- } else {
- tar_qestitemgrupdesc17.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc17" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc3" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group18" style="left:0px; top:201px; width:660px; height:66px; ">
- <line id="line19" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption54" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 3</caption>
- <input id="ipt_qestitemgrupnm18" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption55" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input47" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt4" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption56" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt18" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4";
- var refSeqNo = "/root/temp/qestgruplist["+ 4 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 4 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn18" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc18.disabled = false;
- } else {
- tar_qestitemgrupdesc18.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc18" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc4" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group19" style="left:0px; top:268px; width:660px; height:66px; ">
- <line id="line20" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption57" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 4</caption>
- <input id="ipt_qestitemgrupnm19" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption58" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input50" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt5" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption59" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt19" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5";
- var refSeqNo = "/root/temp/qestgruplist["+ 5 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 5 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn19" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc19.disabled = false;
- } else {
- tar_qestitemgrupdesc19.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc19" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc5" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group20" style="left:0px; top:335px; width:660px; height:66px; ">
- <line id="line21" class="line_3" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption60" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 5</caption>
- <input id="ipt_qestitemgrupnm20" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption61" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input53" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt6" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption62" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt20" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6";
- var refSeqNo = "/root/temp/qestgruplist["+ 6 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 6 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn20" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc20.disabled = false;
- } else {
- tar_qestitemgrupdesc20.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc20" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc6" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- </case>
- <case id="case6">
- <group id="group21" style="left:0px; top:0px; width:660px; height:66; ">
- <line id="line16" class="line_2" style="x1:0px; y1:64px; x2:660px; y2:64px; "/>
- <caption id="caption45" class="cell_1" style="left:0px; top:0px; width:100px; height:66; ">기초설문</caption>
- <input id="ipt_qestitemgrupnm21" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1" disabled="false" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption46" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="ipt_qestitemcnt6" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt1" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption47" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt21" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1";
- var refSeqNo = "/root/temp/qestgruplist["+ 1 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 1 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn21" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc21.disabled = false;
- } else {
- tar_qestitemgrupdesc21.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc21" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group22" style="left:0px; top:67px; width:660px; height:66px; ">
- <line id="line17" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption48" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 1</caption>
- <input id="ipt_qestitemgrupnm22" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption49" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input42" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt2" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption50" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt22" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2";
- var refSeqNo = "/root/temp/qestgruplist["+ 2 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 2 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn22" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc22.disabled = false;
- } else {
- tar_qestitemgrupdesc22.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc22" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc2" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group23" style="left:0px; top:134px; width:660px; height:66px; ">
- <line id="line24" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption69" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 2</caption>
- <input id="ipt_qestitemgrupnm23" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption70" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input61" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt3" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption71" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt23" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3";
- var refSeqNo = "/root/temp/qestgruplist["+ 3 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 3 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn23" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc23.disabled = false;
- } else {
- tar_qestitemgrupdesc23.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc23" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc3" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group24" style="left:0px; top:201px; width:660px; height:66px; ">
- <line id="line25" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption72" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 3</caption>
- <input id="ipt_qestitemgrupnm24" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption73" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input64" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt4" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption74" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt24" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4";
- var refSeqNo = "/root/temp/qestgruplist["+ 4 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 4 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn24" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc24.disabled = false;
- } else {
- tar_qestitemgrupdesc24.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc24" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc4" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group25" style="left:0px; top:268px; width:660px; height:66px; ">
- <line id="line26" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption75" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 4</caption>
- <input id="ipt_qestitemgrupnm25" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption76" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input67" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt5" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption77" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt25" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5";
- var refSeqNo = "/root/temp/qestgruplist["+ 5 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 5 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn25" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc25.disabled = false;
- } else {
- tar_qestitemgrupdesc25.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc25" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc5" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group26" style="left:0px; top:335px; width:660px; height:66px; ">
- <line id="line27" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption78" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 5</caption>
- <input id="ipt_qestitemgrupnm26" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption79" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input70" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt6" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption80" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt26" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6";
- var refSeqNo = "/root/temp/qestgruplist["+ 6+ "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 6 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn26" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc26.disabled = false;
- } else {
- tar_qestitemgrupdesc26.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc26" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc6" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group27" style="left:0px; top:402px; width:660px; height:66px; ">
- <line id="line28" class="line_3" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption81" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 6</caption>
- <input id="ipt_qestitemgrupnm27" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm7" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption82" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input73" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt7" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption83" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt27" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm7";
- var refSeqNo = "/root/temp/qestgruplist["+ 7 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 7 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn27" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn7" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn7");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc27.disabled = false;
- } else {
- tar_qestitemgrupdesc27.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc27" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc7" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- </case>
- <case id="case7">
- <group id="group28" style="left:0px; top:0px; width:660px; height:66; ">
- <line id="line22" class="line_2" style="x1:0px; y1:64px; x2:660px; y2:64px; "/>
- <caption id="caption63" class="cell_1" style="left:0px; top:0px; width:100px; height:66; ">기초설문</caption>
- <input id="ipt_qestitemgrupnm28" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1" disabled="false" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption64" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="ipt_qestitemcnt7" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt1" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption65" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt28" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1";
- var refSeqNo = "/root/temp/qestgruplist["+ 1 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 1 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn28" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc28.disabled = false;
- } else {
- tar_qestitemgrupdesc28.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc28" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group29" style="left:0px; top:67px; width:660px; height:66px; ">
- <line id="line23" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption66" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 1</caption>
- <input id="ipt_qestitemgrupnm29" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption67" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input59" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt2" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption68" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt29" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2";
- var refSeqNo = "/root/temp/qestgruplist["+ 2 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 2 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn29" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc29.disabled = false;
- } else {
- tar_qestitemgrupdesc29.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc29" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc2" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group30" style="left:0px; top:134px; width:660px; height:66px; ">
- <line id="line31" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption90" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 2</caption>
- <input id="ipt_qestitemgrupnm30" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption91" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input81" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt3" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption92" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt30" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3";
- var refSeqNo = "/root/temp/qestgruplist["+ 3 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 3 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn30" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc30.disabled = false;
- } else {
- tar_qestitemgrupdesc30.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc30" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc3" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group31" style="left:0px; top:201px; width:660px; height:66px; ">
- <line id="line32" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption93" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 3</caption>
- <input id="ipt_qestitemgrupnm31" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption94" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input84" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt4" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption95" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt31" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4";
- var refSeqNo = "/root/temp/qestgruplist["+ 4 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 4 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn31" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc31.disabled = false;
- } else {
- tar_qestitemgrupdesc31.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc31" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc4" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group32" style="left:0px; top:268px; width:660px; height:66px; ">
- <line id="line33" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption96" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 4</caption>
- <input id="ipt_qestitemgrupnm32" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption97" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input87" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt5" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption98" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt32" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5";
- var refSeqNo = "/root/temp/qestgruplist["+ 5 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 5 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn32" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc32.disabled = false;
- } else {
- tar_qestitemgrupdesc32.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc32" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc5" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group33" style="left:0px; top:335px; width:660px; height:66px; ">
- <line id="line34" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption99" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 5</caption>
- <input id="ipt_qestitemgrupnm33" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption100" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input90" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt6" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption101" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt33" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6";
- var refSeqNo = "/root/temp/qestgruplist["+ 6 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 6 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn33" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc33.disabled = false;
- } else {
- tar_qestitemgrupdesc33.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc33" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc6" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group34" style="left:0px; top:402px; width:660px; height:66px; ">
- <line id="line35" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption102" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 6</caption>
- <input id="ipt_qestitemgrupnm34" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm7" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption103" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input93" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt7" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption104" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt34" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm7";
- var refSeqNo = "/root/temp/qestgruplist["+ 7 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 7 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn34" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn7" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn7");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc34.disabled = false;
- } else {
- tar_qestitemgrupdesc34.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc34" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc7" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group35" style="left:0px; top:469px; width:660px; height:66px; ">
- <line id="line36" class="line_3" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 7</caption>
- <input id="ipt_qestitemgrupnm35" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm8" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption106" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input96" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt8" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption107" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt35" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm8";
- var refSeqNo = "/root/temp/qestgruplist["+ 8 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 8 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn35" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn8" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn8");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc35.disabled = false;
- } else {
- tar_qestitemgrupdesc35.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc35" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc8" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- </case>
- <case id="case8">
- <group id="group36" style="left:0px; top:0px; width:660px; height:66; ">
- <line id="line29" class="line_2" style="x1:0px; y1:64px; x2:660px; y2:64px; "/>
- <caption id="caption84" class="cell_1" style="left:0px; top:0px; width:100px; height:66; ">기초설문</caption>
- <input id="ipt_qestitemgrupnm36" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1" disabled="false" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption85" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="ipt_qestitemcnt8" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt1" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption86" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt36" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1";
- var refSeqNo = "/root/temp/qestgruplist["+ 1 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 1 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn36" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc36.disabled = false;
- } else {
- tar_qestitemgrupdesc36.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc36" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group37" style="left:0px; top:67px; width:660px; height:66px; ">
- <line id="line30" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption87" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 1</caption>
- <input id="ipt_qestitemgrupnm37" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption88" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input79" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt2" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption89" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt37" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2";
- var refSeqNo = "/root/temp/qestgruplist["+ 2 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 2 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn37" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc37.disabled = false;
- } else {
- tar_qestitemgrupdesc37.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc37" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc2" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group38" style="left:0px; top:134px; width:660px; height:66px; ">
- <line id="line39" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption114" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 2</caption>
- <input id="ipt_qestitemgrupnm38" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption115" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input104" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt3" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption116" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt38" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3";
- var refSeqNo = "/root/temp/qestgruplist["+ 3 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 3 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn38" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc38.disabled = false;
- } else {
- tar_qestitemgrupdesc38.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc38" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc3" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group39" style="left:0px; top:201px; width:660px; height:66px; ">
- <line id="line40" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption117" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 3</caption>
- <input id="ipt_qestitemgrupnm39" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption118" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input107" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt4" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption119" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt39" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4";
- var refSeqNo = "/root/temp/qestgruplist["+ 4 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 4 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn39" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc39.disabled = false;
- } else {
- tar_qestitemgrupdesc39.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc39" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc4" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group40" style="left:0px; top:268px; width:660px; height:66px; ">
- <line id="line41" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption120" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 4</caption>
- <input id="ipt_qestitemgrupnm40" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption121" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input110" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt5" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption122" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt40" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5";
- var refSeqNo = "/root/temp/qestgruplist["+ 5 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 5 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn40" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc40.disabled = false;
- } else {
- tar_qestitemgrupdesc40.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc40" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc5" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group41" style="left:0px; top:335px; width:660px; height:66px; ">
- <line id="line42" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption123" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 5</caption>
- <input id="ipt_qestitemgrupnm41" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption124" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input113" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt6" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption125" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt41" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6";
- var refSeqNo = "/root/temp/qestgruplist["+ 6 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 6 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn41" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc41.disabled = false;
- } else {
- tar_qestitemgrupdesc41.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc41" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc6" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group42" style="left:0px; top:402px; width:660px; height:66px; ">
- <line id="line43" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption126" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 6</caption>
- <input id="ipt_qestitemgrupnm42" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm7" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption127" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input116" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt7" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption128" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt42" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm7";
- var refSeqNo = "/root/temp/qestgruplist["+ 7 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 7 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn42" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn7" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn7");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc42.disabled = false;
- } else {
- tar_qestitemgrupdesc42.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc42" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc7" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group43" style="left:0px; top:469px; width:660px; height:66px; ">
- <line id="line44" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption129" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 7</caption>
- <input id="ipt_qestitemgrupnm43" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm8" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption130" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input119" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt8" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption131" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt43" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm8";
- var refSeqNo = "/root/temp/qestgruplist["+ 8 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 8 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn43" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn8" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn8");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc43.disabled = false;
- } else {
- tar_qestitemgrupdesc43.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc43" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc8" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group44" style="left:0px; top:536px; width:660px; height:66px; ">
- <line id="line45" class="line_3" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption132" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 8</caption>
- <input id="ipt_qestitemgrupnm44" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm9" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption133" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input122" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt9" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption134" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt44" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm9";
- var refSeqNo = "/root/temp/qestgruplist["+ 9 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 9 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn44" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn9" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn9");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc44.disabled = false;
- } else {
- tar_qestitemgrupdesc44.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc44" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc9" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- </case>
- <case id="case9">
- <group id="group45" style="left:0px; top:0px; width:660px; height:66; ">
- <line id="line56" class="line_2" style="x1:0px; y1:64px; x2:660px; y2:64px; "/>
- <caption id="caption165" class="cell_1" style="left:0px; top:0px; width:100px; height:66; ">기초설문</caption>
- <input id="ipt_qestitemgrupnm45" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1" disabled="false" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption166" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="ipt_qestitemcnt9" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt1" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption167" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt45" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1";
- var refSeqNo = "/root/temp/qestgruplist["+ 1 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 1 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn45" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc45.disabled = false;
- } else {
- tar_qestitemgrupdesc45.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc45" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group46" style="left:0px; top:67px; width:660px; height:66px; ">
- <line id="line48" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption141" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 1</caption>
- <input id="ipt_qestitemgrupnm46" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption142" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input130" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt2" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption143" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt46" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2";
- var refSeqNo = "/root/temp/qestgruplist["+ 2 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 2 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn46" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc46.disabled = false;
- } else {
- tar_qestitemgrupdesc46.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc46" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc2" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group47" style="left:0px; top:134px; width:660px; height:66px; ">
- <line id="line58" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption171" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 2</caption>
- <input id="ipt_qestitemgrupnm47" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption172" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input2" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt3" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption173" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt47" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3";
- var refSeqNo = "/root/temp/qestgruplist["+ 3 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 3 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn47" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc47.disabled = false;
- } else {
- tar_qestitemgrupdesc47.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc47" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc3" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group48" style="left:0px; top:201px; width:660px; height:66px; ">
- <line id="line49" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption144" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 3</caption>
- <input id="ipt_qestitemgrupnm48" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption145" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input133" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt4" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption146" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt48" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4";
- var refSeqNo = "/root/temp/qestgruplist["+ 4 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 4 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn48" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc48.disabled = false;
- } else {
- tar_qestitemgrupdesc48.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc48" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc4" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group49" style="left:0px; top:268px; width:660px; height:66px; ">
- <line id="line50" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption147" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 4</caption>
- <input id="ipt_qestitemgrupnm49" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption148" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input136" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt5" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption149" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt49" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5";
- var refSeqNo = "/root/temp/qestgruplist["+ 5 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 5 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn49" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc49.disabled = false;
- } else {
- tar_qestitemgrupdesc49.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc49" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc5" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group50" style="left:0px; top:335px; width:660px; height:66px; ">
- <line id="line51" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption150" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 5</caption>
- <input id="ipt_qestitemgrupnm50" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption151" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input139" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt6" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption152" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt50" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6";
- var refSeqNo = "/root/temp/qestgruplist["+ 6 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 6 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn50" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc50.disabled = false;
- } else {
- tar_qestitemgrupdesc50.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc50" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc6" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group51" style="left:0px; top:402px; width:660px; height:66px; ">
- <line id="line52" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption153" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 6</caption>
- <input id="ipt_qestitemgrupnm51" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm7" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption154" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input142" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt7" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption155" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt51" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm7";
- var refSeqNo = "/root/temp/qestgruplist["+ 7 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 7 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn51" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn7" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn7");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc51.disabled = false;
- } else {
- tar_qestitemgrupdesc51.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc51" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc7" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group52" style="left:0px; top:469px; width:660px; height:66px; ">
- <line id="line53" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption156" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 7</caption>
- <input id="ipt_qestitemgrupnm52" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm8" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption157" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input145" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt8" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption158" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt52" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm8";
- var refSeqNo = "/root/temp/qestgruplist["+ 8 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 8 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn52" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn8" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn8");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc52.disabled = false;
- } else {
- tar_qestitemgrupdesc52.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc52" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc8" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group53" style="left:0px; top:536px; width:660px; height:66px; ">
- <line id="line54" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption159" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 8</caption>
- <input id="ipt_qestitemgrupnm53" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm9" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption160" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input148" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt9" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption161" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt53" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm9";
- var refSeqNo = "/root/temp/qestgruplist["+ 9 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 9 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn53" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn9" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn9");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc53.disabled = false;
- } else {
- tar_qestitemgrupdesc53.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc53" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc9" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group54" style="left:0px; top:603px; width:660px; height:66px; ">
- <line id="line55" class="line_3" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption162" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 9</caption>
- <input id="ipt_qestitemgrupnm54" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm10" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption163" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input151" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt10" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption164" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt54" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm10";
- var refSeqNo = "/root/temp/qestgruplist["+ 10 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 10 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn54" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn10" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn10");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc54.disabled = false;
- } else {
- tar_qestitemgrupdesc54.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc54" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc10" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- </case>
- <case id="case10">
- <group id="group55" style="left:0px; top:0px; width:660px; height:66; ">
- <line id="line37" class="line_2" style="x1:0px; y1:64px; x2:660px; y2:64px; "/>
- <caption id="caption108" class="cell_1" style="left:0px; top:0px; width:100px; height:66; ">기초설문</caption>
- <input id="ipt_qestitemgrupnm55" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1" disabled="false" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption109" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="ipt_qestitemcnt10" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt1" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption110" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt55" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm1";
- var refSeqNo = "/root/temp/qestgruplist["+ 1 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 1 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn55" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn1");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc55.disabled = false;
- } else {
- tar_qestitemgrupdesc55.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc55" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc1" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group56" style="left:0px; top:67px; width:660px; height:66px; ">
- <line id="line38" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption111" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 1</caption>
- <input id="ipt_qestitemgrupnm56" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption112" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input125" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt2" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption113" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt56" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm2";
- var refSeqNo = "/root/temp/qestgruplist["+ 2 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 2 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn56" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn2");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc56.disabled = false;
- } else {
- tar_qestitemgrupdesc56.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc56" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc2" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group57" style="left:0px; top:134px; width:660px; height:66px; ">
- <line id="line47" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption138" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 2</caption>
- <input id="ipt_qestitemgrupnm57" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption139" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input128" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt3" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption140" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt57" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm3";
- var refSeqNo = "/root/temp/qestgruplist["+ 3 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 3 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn57" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn3");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc57.disabled = false;
- } else {
- tar_qestitemgrupdesc57.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc57" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc3" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group58" style="left:0px; top:201px; width:660px; height:66px; ">
- <line id="line59" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption174" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 3</caption>
- <input id="ipt_qestitemgrupnm58" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption175" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input7" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt4" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption176" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt58" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm4";
- var refSeqNo = "/root/temp/qestgruplist["+ 4 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 4 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn58" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn4");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc58.disabled = false;
- } else {
- tar_qestitemgrupdesc58.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc58" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc4" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group59" style="left:0px; top:268px; width:660px; height:66px; ">
- <line id="line60" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption177" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 4</caption>
- <input id="ipt_qestitemgrupnm59" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption178" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input165" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt5" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption179" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt59" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm5";
- var refSeqNo = "/root/temp/qestgruplist["+ 5 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 5 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn59" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn5");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc59.disabled = false;
- } else {
- tar_qestitemgrupdesc59.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc59" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc5" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group60" style="left:0px; top:335px; width:660px; height:66px; ">
- <line id="line61" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption180" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 5</caption>
- <input id="ipt_qestitemgrupnm60" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption181" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input168" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt6" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption182" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt60" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm6";
- var refSeqNo = "/root/temp/qestgruplist["+ 6 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 6 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn60" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn6");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc60.disabled = false;
- } else {
- tar_qestitemgrupdesc60.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc60" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc6" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group61" style="left:0px; top:402px; width:660px; height:66px; ">
- <line id="line62" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption183" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 6</caption>
- <input id="ipt_qestitemgrupnm61" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm7" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption184" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input171" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt7" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption185" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt61" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm7";
- var refSeqNo = "/root/temp/qestgruplist["+ 7 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 7 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn61" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn7" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn7");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc61.disabled = false;
- } else {
- tar_qestitemgrupdesc61.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc61" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc7" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group62" style="left:0px; top:469px; width:660px; height:66px; ">
- <line id="line63" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption186" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 7</caption>
- <input id="ipt_qestitemgrupnm62" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm8" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption187" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input174" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt8" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption188" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt62" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm8";
- var refSeqNo = "/root/temp/qestgruplist["+ 8 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 8 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn62" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn8" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn8");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc62.disabled = false;
- } else {
- tar_qestitemgrupdesc62.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc62" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc8" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group63" style="left:0px; top:536px; width:660px; height:66px; ">
- <line id="line64" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption189" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 8</caption>
- <input id="ipt_qestitemgrupnm63" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm9" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption190" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input177" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt9" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption191" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt63" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm9";
- var refSeqNo = "/root/temp/qestgruplist["+ 9 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 9 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn63" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn9" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn9");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc63.disabled = false;
- } else {
- tar_qestitemgrupdesc63.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc63" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc9" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group64" style="left:0px; top:603px; width:660px; height:66px; ">
- <line id="line65" class="line_2" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption192" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 9</caption>
- <input id="ipt_qestitemgrupnm64" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm10" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption193" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input180" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt10" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption194" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt64" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm10";
- var refSeqNo = "/root/temp/qestgruplist["+ 10 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 10 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn64" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn10" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn10");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc64.disabled = false;
- } else {
- tar_qestitemgrupdesc64.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc64" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc10" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- <group id="group65" style="left:0px; top:670px; width:660px; height:66px; ">
- <line id="line66" class="line_3" style="x1:0px; y1:65px; x2:660px; y2:65px; "/>
- <caption id="caption195" class="cell_1" style="left:0px; top:0px; width:100px; height:66px; ">그룹 10</caption>
- <input id="ipt_qestitemgrupnm65" ref="/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm11" style="left:103px; top:1px; width:338px; height:19px; "/>
- <caption id="caption196" style="left:444px; top:2px; width:10px; height:20px; ">(</caption>
- <input id="input183" ref="/root/main/qestitem/qestgruplist/qestitemcntlist/qestitemcnt11" disabled="true" style="left:457px; top:1px; width:30px; height:19px; "/>
- <caption id="caption197" style="left:491px; top:2px; width:23px; height:20px; ">건 )</caption>
- <button id="btn_itemmngt65" class="btn2_letter4" style="left:516px; top:1px; width:64px; height:19px; ">
- <caption>문항관리</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var refNm = "/root/main/qestitem/qestgruplist/qestitemgrupnmlist/qestitemgrupnm11";
- var refSeqNo = "/root/temp/qestgruplist["+ 11 + "]/qpaprseqno";
- var refGrupNo = "/root/temp/qestgruplist["+ 11 + "]/qestitemgrupseqno";
- fViewCell(refNm, refSeqNo, refGrupNo);
- ]]>
- </script>
- </button>
- <select id="chk_qestuseyn65" ref="/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn11" overflow="visible" appearance="full" style="left:583px; top:3px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>설명사용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var descuse = model.getValue("/root/main/qestitem/qestgruplist/qestuseynlist/qestuseyn11");
-
- if (descuse == "Y") {
- tar_qestitemgrupdesc65.disabled = false;
- } else {
- tar_qestitemgrupdesc65.disabled = true;
- }
- ]]>
- </script>
- </select>
- <textarea id="tar_qestitemgrupdesc65" ref="/root/main/qestitem/qestgruplist/qestitemgrupdesclist/qestitemgrupdesc11" style="left:103px; top:22px; width:557px; height:40px; "/>
- </group>
- </case>
- </switch>
- <group id="group66" style="left:0px; top:457px; width:660px; height:27px; ">
- <button id="button41" class="btn4_letter2" style="left:604px; top:5px; width:56px; height:22px; ">
- <caption>닫기</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- window.close();
- ]]>
- </script>
- </button>
- </group>
- <datagrid id="grd_gruplist" nodeset="/root/temp/gruplist" visibility="hidden" caption="qpaprseqno^qestitemgrupseqno^qestitemgrupnm^qestitemcnt^qestuseyn^qestitemgrupdesc" colsep="^" colwidth="100, 110, 95, 110, 100, 110" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:90px; width:325px; height:170px; ">
- <col ref="qpaprseqno"/>
- <col ref="qestitemgrupseqno"/>
- <col ref="qestitemgrupnm"/>
- <col ref="qestitemcnt"/>
- <col ref="qestuseyn"/>
- <col ref="qestitemgrupdesc"/>
- </datagrid>
- </xhtml:body>
- </xhtml:html>
|