Produced by Araxis Merge on 11/22/2016 4:46:24 PM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
# | Location | File | Last Modified |
---|---|---|---|
1 | TBI_UserInterface.zip\TBI_UserInterface\TBI_Instruments | InsomniaSeverityIndex.aspx | Mon Nov 14 15:34:54 2016 UTC |
2 | TBI_UserInterface.zip\TBI_UserInterface\TBI_Instruments | InsomniaSeverityIndex.aspx | Mon Nov 21 17:35:05 2016 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 2 | 1070 |
Changed | 1 | 2 |
Inserted | 0 | 0 |
Removed | 0 | 0 |
Whitespace | |
---|---|
Character case | Differences in character case are significant |
Line endings | Differences in line endings (CR and LF characters) are ignored |
CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
1 | <%@ Page T itle="" La nguage="C# " MasterPa geFile="~/ TBI_Instru ments/Regi stryInstru ment.maste r" AutoEve ntWireup=" true" Code File="Inso mniaSeveri tyIndex.as px.cs" Inh erits="Ins omniaSever ityIndex" %> | |
2 | ||
3 | <%@ Import Namespace ="Veterans Affairs.Re gistries.B usiness" % > | |
4 | <%@ Regist er Assembl y="Telerik .Web.UI" N amespace=" Telerik.We b.UI" TagP refix="tel erik" %> | |
5 | <%@ Regist er Assembl y="AjaxCon trolToolki t" Namespa ce="AjaxCo ntrolToolk it" TagPre fix="ajaxT oolkit" %> | |
6 | <%@ Regist er TagPref ix="VA" Ta gName="Tbi DiagnosisS elector" S rc="~/cont rols/TbiDi agnosisSel ector.ascx " %> | |
7 | ||
8 | ||
9 | <asp:Conte nt ID="Con tent1" Con tentPlaceH olderID="h ead" runat ="Server"> | |
10 | <link type="text /css" href ="~/styles /StyleShee t.css" /> | |
11 | <style type="tex t/css"> | |
12 | .b readcrumbI nstrument | |
13 | { | |
14 | backgrou nd-color: #6B1424; | |
15 | border-b ottom: 1px solid #00 0; | |
16 | color: # FFF; | |
17 | font-fam ily: Verda na, Geneva , Arial, H elvetica, sans-serif ; | |
18 | font-var iant: smal l-caps; | |
19 | font-wei ght: 700; | |
20 | letter-s pacing: 1p x; | |
21 | margin: 2px 0 2px 0; | |
22 | padding: 8px 25px 5px 10px; | |
23 | } | |
24 | .d etailTable | |
25 | { | |
26 | border: 0px; | |
27 | backgrou nd-color: #FFFFFF; | |
28 | } | |
29 | .d etailTable td | |
30 | { | |
31 | border: 0px; | |
32 | backgrou nd-color: #FFFFFF; | |
33 | } | |
34 | .r equiredFie ld | |
35 | { | |
36 | font -weight:bo ld; | |
37 | colo r:#FF0000; | |
38 | } | |
39 | </styl e> | |
40 | </asp:Cont ent> | |
41 | ||
42 | <asp:Conte nt ID="Con tent2" Con tentPlaceH olderID="C ontentPlac eHolder" R unat="Serv er"> | |
43 | <asp:S criptManag er ID="Scr iptManager 1" ScriptM ode="Relea se" runat= "server"> | |
44 | </asp: ScriptMana ger> | |
45 | <teler ik:RadCode Block runa t="server" ID="RadCo deBlock1"> | |
46 | ||
47 | <s cript type ="text/jav ascript"> | |
48 | Sys.WebF orms.PageR equestMana ger.getIns tance().ad d_beginReq uest(start Request); | |
49 | Sys.WebF orms.PageR equestMana ger.getIns tance().ad d_endReque st(endRequ est); | |
50 | ||
51 | function startRequ est(sender , e) { | |
52 | //di sable butt on during the AJAX c all | |
53 | docu ment.getEl ementById( '<%=btnSav eSurveyDra ft.ClientI D%>').disa bled = tru e; | |
54 | docu ment.getEl ementById( '<%=btnSub mitSurvey. ClientID%> ').disable d = true; | |
55 | docu ment.getEl ementById( '<%=btnCan celSurvey. ClientID%> ').disable d = true; | |
56 | } | |
57 | function endReques t(sender, e) { | |
58 | //re -enable bu tton once the AJAX c all has co mpleted | |
59 | docu ment.getEl ementById( '<%=btnSav eSurveyDra ft.ClientI D%>').disa bled = fal se; | |
60 | docu ment.getEl ementById( '<%=btnSub mitSurvey. ClientID%> ').disable d = false; | |
61 | docu ment.getEl ementById( '<%=btnCan celSurvey. ClientID%> ').disable d = false; | |
62 | } | |
63 | </ script> | |
64 | <s cript type ="text/jav ascript"> | |
65 | $(docume nt).ready( function() { | |
66 | ||
67 | // D isables 'E nter' Key from posti ng back on any input | |
68 | // e lement ( t extbox, ra diolist, c heckbox, e tc ) | |
69 | $('i nput').key down(funct ion(e) { | |
70 | if (e.keyC ode == 13) { return false; } | |
71 | }); | |
72 | ||
73 | // D isables 'E nter' Key from posti ng back wh en no inpu t | |
74 | // e lement is in focus, and the en ter key is pressed | |
75 | $('d iv').keydo wn(functio n(e) { | |
76 | if (e.keyC ode == 13) { return false; } | |
77 | }); | |
78 | ||
79 | }); // E ND $(docum ent).ready (function( ) | |
80 | </ script> | |
81 | <s cript type ="text/jav ascript"> | |
82 | $(docume nt).ready( function ( ) { | |
83 | $('in put:text') .keydown(f unction(e) { | |
84 | //cancel e nter to pr event erro rs | |
85 | if (e.keyC ode == 13) | |
86 | return false; | |
87 | }); | |
88 | ||
89 | //pr ocessPerso nReporting _Click(); | |
90 | //pr ocessRadio ButtonQ_Cl ick(); | |
91 | ||
92 | wind ow.onbefor eunload = function ( ) { | |
93 | //Save dra ft if time out occurs | |
94 | document.g etElementB yId('<%= b tnSaveSurv eyDraft.Cl ientID %>' ).click(); | |
95 | / / return; | |
96 | } | |
97 | ||
98 | }); // E ND $(docum ent).ready (function( ) | |
99 | ||
100 | </ script> | |
101 | ||
102 | </tele rik:RadCod eBlock> | |
103 | <teler ik:RadCode Block runa t="server" ID="RadCo deBlock2"> | |
104 | <d iv class=" breadcrumb Instrument "> | |
105 | <asp:Lab el ID="Lab elBreadCru mb" runat= "server" T ext="TBI I nstruments > Instrum ent Associ ations > P atient Hea lth Questi onnaire - 9"></asp:L abel> | |
106 | </ div> | |
107 | </tele rik:RadCod eBlock> | |
108 | <teler ik:RadCode Block runa t="server" ID="RadCo deBlock3"> | |
109 | <a sp:UpdateP anel ID="M ainUpdateP anel" runa t="server" > | |
110 | <Content Template> | |
111 | <asp :UpdatePro gress ID=" MainUpdate Progress" runat="ser ver"> | |
112 | <ProgressT emplate> | |
113 | <!-- M odal Popup for Loadi ng --> | |
114 | <div s tyle="padd ing-left: 3px;"> | |
115 | <d iv style=" background -color: #F F0000; wid th: 170px; color: #F FFFFF; pad ding: 5px; "> | |
116 | Processi ng...Pleas e wait. | |
117 | </ div> | |
118 | </div> | |
119 | <%--<d iv style=" background -color: Gr ay; filter : alpha(op acity=50); opacity: 0.50; widt h: 100%; t op: 0px; l eft: 0px; position: fixed; | |
120 | he ight: 100% ;"> | |
121 | </div> | |
122 | <div s tyle="marg in: auto; font-famil y: Trebuch et MS; fil ter: alpha (opacity=1 00); opaci ty: 1; fon t-size: sm all; verti cal-align: middle; | |
123 | to p: 45%; po sition: fi xed; right : 45%; col or: #23232 3; text-al ign: cente r; backgro und-color: White; he ight: 100p x;"> | |
124 | <t able style ="backgrou nd-color: White; fon t-family: Sans-Serif ; text-ali gn: center ; border: solid 1px #232323; c olor: #232 323; | |
125 | width: 3 00px; heig ht: inheri t; padding : 15px;"> | |
126 | <tr> | |
127 | <td style="tex t-align: i nherit;"> | |
128 | <img src=" images/loa ding_image .gif" alt= "Loading" title="Loa ding Image " /> | |
129 | </td > | |
130 | <td style="tex t-align: i nherit;"> | |
131 | <span styl e="font-fa mily: Sans -Serif; fo nt-size: m edium; fon t-weight: bold; font ">Processi ng...Pleas e wait.</s pan> | |
132 | </td > | |
133 | </tr> | |
134 | </ table> | |
135 | </div> --%> | |
136 | <!-- E nd Modal P opup for L oading --> | |
137 | </Progress Template> | |
138 | </as p:UpdatePr ogress> | |
139 | <asp :Validatio nSummary I D="TBIInst rumentsVal idationSum maryOnSave " runat="s erver" Tab Index="1" HeaderText ="The page has the f ollowing d ata errors :" | |
140 | DisplayMod e="BulletL ist" ShowS ummary="fa lse" ShowM essageBox= "true" Val idationGro up="OnSave " /> | |
141 | <asp :Panel ID= "PanelPati ent" Width ="100%" Gr oupingText =" &n bsp;Patien t &nb sp;" runat ="server"> | |
142 | <table cel lpadding=" 5" cellspa cing="5"> | |
143 | <tr> | |
144 | <t d> | |
145 | &n bsp;<asp:L abel ID="L abelForNam e" runat=" server" Te xt="Patien t:" Associ atedContro lID="Label Patient">< /asp:Label > <as p:Label | |
146 | ID=" LabelPatie nt" runat= "server" S kinID="Dat aLabel" Ta bIndex="2" ></asp:Lab el> | |
147 | </ td> | |
148 | <t d> | |
149 | <asp:Lab el ID="Lab elForSSN" runat="ser ver" SkinI D="DataLab el" Associ atedContro lID="Label SSN" Text= "SSN:"></a sp:Label> | |
150 | <a sp:Label I D="LabelSS N" runat=" server" Sk inID="Data Label" Tab Index="3"> </asp:Labe l> | |
151 | </ td> | |
152 | <t d> | |
153 | <asp:Lab el ID="Lab elForFacil ity" runat ="server" SkinID="Da taLabel" A ssociatedC ontrolID=" LabelFacil ity" Text= "Facility: " Visible= "false"></ asp:Label> | |
154 | <a sp:Label I D="LabelFa cility" ru nat="serve r" SkinID= "DataLabel " TabIndex ="4"></asp :Label> | |
155 | </ td> | |
156 | </tr> | |
157 | </table> | |
158 | </as p:Panel> | |
159 | <!-- Hidden Fi eld - Surv ey Type -- > | |
160 | <asp :HiddenFie ld ID="Hid denSurveyT ype" runat ="server" Visible="f alse" Valu e="ISI" /> | |
161 | <asp :Panel ID= "PanelSurv eyHeader" Width="100 %" runat=" server" Cs sClass="ma inContent" > | |
162 | <br /> | |
163 | <asp:Label ID="Label Instrument Title" run at="server " Style="f ont-weight : bold" /> -&nb sp; | |
164 | <asp:LinkB utton ID=" lnkBtnTogg leInstruct ions" runa t="server" Text="Cli ck for Ins tructions" ToolTip=" Click to s how/hide i nstruction s." | |
165 | OnClic k="lnkBtnT oggleInstr uctions_On Click" Tab Index="10" /> | |
166 | <br /> | |
167 | </as p:Panel> | |
168 | <!-- Instructi on Area -- > | |
169 | <asp :Panel ID= "PanelInst ructions" runat="ser ver" Visib le="false" > | |
170 | <br /> | |
171 | <div style ="padding: 5px; widt h: 900px;" > | |
172 | <p> | |
173 | Th e Insomnia Severity Index has seven ques tions. The seven ans wers are a dded up to get a tot al score. When you h ave | |
174 | yo ur total s core, look at the 'G uidelines for Scorin g/Interpre tation' be low to see where you r sleep di fficulty f its. | |
175 | </p> | |
176 | <p> | |
177 | Fo r each que stion, ple ase CIRCLE the numbe r that bes t describe s your ans wer. | |
178 | </p> | |
179 | <p> | |
180 | <i > | |
181 | Please r ate the CU RRENT (i.e . LAST 2 W EEKS) SEVE RITY of yo ur insomni a problem( s). | |
182 | </ i> | |
183 | </p> | |
184 | </div> | |
185 | </as p:Panel> | |
186 | <!-- End Instr uction Are a --> | |
187 | ||
188 | <!-- Question Area --> | |
189 | <asp :Panel ID= "PanelQues tions" Wid th="100%" runat="ser ver" CssCl ass="mainC ontent"> | |
190 | <br /> | |
191 | ||
192 | <table sty le="width: 100%;"> | |
193 | <tr> | |
194 | <t d style="w idth:40px" ></td> | |
195 | <t d colspan= "2"> | |
196 | <!-- Dia gnosis Con trol --> | |
197 | <!-- Set Question Text, Surv eyTypeId, SurveyType Code in th e page_loa d --> | |
198 | <VA:TbiD iagnosisSe lector ID= "ctrlDiagn osis" runa t="server" QuestionN umber="DX" StartTabI ndex="15" /> | |
199 | </ td> | |
200 | </tr> | |
201 | <tr> | |
202 | <t d style="w idth:40px" ></td> | |
203 | <t d style="w idth:200px "> | |
204 | <asp:Lab el ID="Lab elDate1" r unat="serv er" Associ atedContro lID="dpDat e1" SkinID ="DataLabe l" TabInde x="30"> | |
205 | </asp:La bel> <span class="re quiredFiel d">*</span > | |
206 | </ td> | |
207 | <t d> | |
208 | <telerik :RadDatePi cker ID="d pDate1" ru nat="serve r" TabInde x="31"> | |
209 | <Cal endar ID=" calDate1" runat="ser ver"> | |
210 | </Ca lendar> | |
211 | </teleri k:RadDateP icker> | |
212 | <br /> | |
213 | <asp:Req uiredField Validator ID="Requir edFieldVal idatorDate 1" runat=" server" Co ntrolToVal idate="dpD ate1" TabI ndex="32" Validation Group="OnS ave" | |
214 | Disp lay="Dynam ic" ErrorM essage="* Date is re quired.">< /asp:Requi redFieldVa lidator> | |
215 | <br /> | |
216 | </ td> | |
217 | </tr> | |
218 | </table> | |
219 | ||
220 | <table wid th="100%"> | |
221 | <tr> | |
222 | <t d colspan= "100%"> | |
223 | | |
224 | </ td> | |
225 | </tr> | |
226 | <tr> | |
227 | <t d style="w idth:25px" > | |
228 | | |
229 | </ td> | |
230 | <t d> | |
231 | <h3>Over the <u>la st 2 weeks </u> how o ften have you been b othered by any of th e followin g problems ?</h3> | |
232 | </ td> | |
233 | </tr> | |
234 | <tr> | |
235 | <t d colspan= "100%"> | |
236 | | |
237 | </ td> | |
238 | </tr> | |
239 | <tr> | |
240 | <t d> | |
241 | | |
242 | </ td> | |
243 | <t d colspan= "100%"> | |
244 | <b>1.</b > <as p:Label ID ="LabelFor Q1" runat= "server" A ssociatedC ontrolID=" rblQ1" Ski nID="DataL abel" TabI ndex="50"> </asp:Labe l> | |
245 | <span cl ass="requi redField"> *</span> | |
246 | </ td> | |
247 | </tr> | |
248 | <tr> | |
249 | <t d> </ td> | |
250 | <t d> | |
251 | <asp:Rad ioButtonLi st ID="rbl Q1" runat= "server" R epeatDirec tion="Vert ical" Data SourceID=" ObjectData SourceQ1" TabIndex=" 60" | |
252 | Data TextField= "CHOICE_TE XT" DataVa lueField=" STD_QUESTI ON_CHOICE_ ID" CssCla ss="" Vali dationGrou p="OnSave" AutoPostB ack="false "> | |
253 | </asp:Ra dioButtonL ist> | |
254 | <asp:Req uiredField Validator ID="Requir edFieldVal idator1" r unat="serv er" Contro lToValidat e="rblQ1" TabIndex=" 61" Valida tionGroup= "OnSave" | |
255 | Disp lay="Dynam ic" ErrorM essage="* Selection is require d."></asp: RequiredFi eldValidat or> | |
256 | <asp:Obj ectDataSou rce ID="Ob jectDataSo urceQ1" ru nat="serve r" SelectM ethod="Get ChoicesByQ uestionNum berandSurv eyType" Ty peName="Ve teransAffa irs.Regist ries.Busin essManager .TBI.TBIIn strumentsM anager"> | |
257 | <Sel ectParamet ers> | |
258 | <asp:Contr olParamete r ControlI D="HiddenS urveyType" Direction ="Input" N ame="surve yTypeCode" Type="Str ing" /> | |
259 | <asp:Contr olParamete r ControlI D="HiddenQ 1" Directi on="Input" Name="que stionNumbe r" Type="S tring" /> | |
260 | </Se lectParame ters> | |
261 | </asp:Ob jectDataSo urce> | |
262 | <asp:Hid denField I D="HiddenQ 1" runat=" server" Vi sible="fal se" Value= "1" /> | |
263 | </ td> | |
264 | </tr> | |
265 | <tr> | |
266 | <t d colspan= "100%"> | |
267 | | |
268 | </ td> | |
269 | </tr> | |
270 | <tr> | |
271 | <t d> | |
272 | | |
273 | </ td> | |
274 | <t d> | |
275 | <b>2.</b > <as p:Label ID ="LabelFor Q2" runat= "server" A ssociatedC ontrolID=" rblQ2" Ski nID="DataL abel" TabI ndex="70"> </asp:Labe l> | |
276 | <span cl ass="requi redField"> *</span> | |
277 | </ td> | |
278 | </tr> | |
279 | <tr> | |
280 | <t d> </ td> | |
281 | <t d> | |
282 | <asp:Rad ioButtonLi st ID="rbl Q2" runat= "server" R epeatDirec tion="Vert ical" Data SourceID=" ObjectData SourceQ2" TabIndex=" 80" | |
283 | Data TextField= "CHOICE_TE XT" DataVa lueField=" STD_QUESTI ON_CHOICE_ ID" CssCla ss="" Vali dationGrou p="OnSave" AutoPostB ack="false "> | |
284 | </asp:Ra dioButtonL ist> | |
285 | <asp:Req uiredField Validator ID="Requir edFieldVal idator2" r unat="serv er" Contro lToValidat e="rblQ2" TabIndex=" 81" Valida tionGroup= "OnSave" | |
286 | Disp lay="Dynam ic" ErrorM essage="* Selection is require d."></asp: RequiredFi eldValidat or> | |
287 | <asp:Obj ectDataSou rce ID="Ob jectDataSo urceQ2" ru nat="serve r" SelectM ethod="Get ChoicesByQ uestionNum berandSurv eyType" Ty peName="Ve teransAffa irs.Regist ries.Busin essManager .TBI.TBIIn strumentsM anager"> | |
288 | <Sel ectParamet ers> | |
289 | <asp:Contr olParamete r ControlI D="HiddenS urveyType" Direction ="Input" N ame="surve yTypeCode" Type="Str ing" /> | |
290 | <asp:Contr olParamete r ControlI D="HiddenQ 2" Directi on="Input" Name="que stionNumbe r" Type="S tring" /> | |
291 | </Se lectParame ters> | |
292 | </asp:Ob jectDataSo urce> | |
293 | <asp:Hid denField I D="HiddenQ 2" runat=" server" Vi sible="fal se" Value= "2" /> | |
294 | </ td> | |
295 | </tr> | |
296 | ||
297 | <tr> | |
298 | <t d colspan= "100%" ali gn="center "> | |
299 | | |
300 | </ td> | |
301 | </tr> | |
302 | <tr> | |
303 | <t d> | |
304 | | |
305 | </ td> | |
306 | <t d> | |
307 | <b>3.</b > <as p:Label ID ="LabelFor Q3" runat= "server" A ssociatedC ontrolID=" rblQ3" Ski nID="DataL abel" TabI ndex="90"> </asp:Labe l> | |
308 | <span cl ass="requi redField"> *</span> | |
309 | </ td> | |
310 | </tr> | |
311 | ||
312 | <tr> | |
313 | <t d> </ td> | |
314 | <t d> | |
315 | <asp:Rad ioButtonLi st ID="rbl Q3" runat= "server" R epeatDirec tion="Vert ical" Data SourceID=" ObjectData SourceQ3" TabIndex=" 100" | |
316 | Data TextField= "CHOICE_TE XT" DataVa lueField=" STD_QUESTI ON_CHOICE_ ID" CssCla ss="" Vali dationGrou p="OnSave" AutoPostB ack="false "> | |
317 | </asp:Ra dioButtonL ist> | |
318 | <asp:Req uiredField Validator ID="Requir edFieldVal idator3" r unat="serv er" Contro lToValidat e="rblQ3" TabIndex=" 101" Valid ationGroup ="OnSave" | |
319 | Disp lay="Dynam ic" ErrorM essage="* Selection is require d."></asp: RequiredFi eldValidat or> | |
320 | <asp:Obj ectDataSou rce ID="Ob jectDataSo urceQ3" ru nat="serve r" SelectM ethod="Get ChoicesByQ uestionNum berandSurv eyType" Ty peName="Ve teransAffa irs.Regist ries.Busin essManager .TBI.TBIIn strumentsM anager"> | |
321 | <Sel ectParamet ers> | |
322 | <asp:Contr olParamete r ControlI D="HiddenS urveyType" Direction ="Input" N ame="surve yTypeCode" Type="Str ing" /> | |
323 | <asp:Contr olParamete r ControlI D="HiddenQ 3" Directi on="Input" Name="que stionNumbe r" Type="S tring" /> | |
324 | </Se lectParame ters> | |
325 | </asp:Ob jectDataSo urce> | |
326 | <asp:Hid denField I D="HiddenQ 3" runat=" server" Vi sible="fal se" Value= "3" /> | |
327 | </ td> | |
328 | </tr> | |
329 | ||
330 | <tr> | |
331 | <t d colspan= "100%" ali gn="center "> | |
332 | | |
333 | </ td> | |
334 | </tr> | |
335 | <tr> | |
336 | <t d> | |
337 | | |
338 | </ td> | |
339 | <t d> | |
340 | <b>4.</b > <as p:Label ID ="LabelFor Q4" runat= "server" A ssociatedC ontrolID=" rblQ4" Ski nID="DataL abel" TabI ndex="110" ></asp:Lab el> | |
341 | <span cl ass="requi redField"> *</span> | |
342 | </ td> | |
343 | </tr> | |
344 | <tr> | |
345 | <t d> </ td> | |
346 | <t d> | |
347 | <asp:Rad ioButtonLi st ID="rbl Q4" runat= "server" R epeatDirec tion="Vert ical" Data SourceID=" ObjectData SourceQ4" TabIndex=" 120" | |
348 | Data TextField= "CHOICE_TE XT" DataVa lueField=" STD_QUESTI ON_CHOICE_ ID" CssCla ss="" Vali dationGrou p="OnSave" AutoPostB ack="false "> | |
349 | </asp:Ra dioButtonL ist> | |
350 | <asp:Req uiredField Validator ID="Requir edFieldVal idator4" r unat="serv er" Contro lToValidat e="rblQ4" TabIndex=" 121" Valid ationGroup ="OnSave" | |
351 | Disp lay="Dynam ic" ErrorM essage="* Selection is require d."></asp: RequiredFi eldValidat or> | |
352 | <asp:Obj ectDataSou rce ID="Ob jectDataSo urceQ4" ru nat="serve r" SelectM ethod="Get ChoicesByQ uestionNum berandSurv eyType" Ty peName="Ve teransAffa irs.Regist ries.Busin essManager .TBI.TBIIn strumentsM anager"> | |
353 | <Sel ectParamet ers> | |
354 | <asp:Contr olParamete r ControlI D="HiddenS urveyType" Direction ="Input" N ame="surve yTypeCode" Type="Str ing" /> | |
355 | <asp:Contr olParamete r ControlI D="HiddenQ 4" Directi on="Input" Name="que stionNumbe r" Type="S tring" /> | |
356 | </Se lectParame ters> | |
357 | </asp:Ob jectDataSo urce> | |
358 | <asp:Hid denField I D="HiddenQ 4" runat=" server" Vi sible="fal se" Value= "4" /> | |
359 | </ td> | |
360 | </tr> | |
361 | ||
362 | <tr> | |
363 | <t d colspan= "100%" ali gn="center "> | |
364 | | |
365 | </ td> | |
366 | </tr> | |
367 | <tr> | |
368 | <t d> | |
369 | | |
370 | </ td> | |
371 | <t d> | |
372 | <b>5.</b > <as p:Label ID ="LabelFor Q5" runat= "server" A ssociatedC ontrolID=" rblQ5" Ski nID="DataL abel" TabI ndex="130" ></asp:Lab el> | |
373 | <span cl ass="requi redField"> *</span> | |
374 | </ td> | |
375 | </tr> | |
376 | ||
377 | <tr> | |
378 | <t d> </ td> | |
379 | <t d> | |
380 | <asp:Rad ioButtonLi st ID="rbl Q5" runat= "server" R epeatDirec tion="Vert ical" Data SourceID=" ObjectData SourceQ5" TabIndex=" 140" | |
381 | Data TextField= "CHOICE_TE XT" DataVa lueField=" STD_QUESTI ON_CHOICE_ ID" CssCla ss="" Vali dationGrou p="OnSave" AutoPostB ack="false "> | |
382 | </asp:Ra dioButtonL ist> | |
383 | <asp:Req uiredField Validator ID="Requir edFieldVal idator5" r unat="serv er" Contro lToValidat e="rblQ5" TabIndex=" 141" Valid ationGroup ="OnSave" | |
384 | Disp lay="Dynam ic" ErrorM essage="* Selection is require d."></asp: RequiredFi eldValidat or> | |
385 | <asp:Obj ectDataSou rce ID="Ob jectDataSo urceQ5" ru nat="serve r" SelectM ethod="Get ChoicesByQ uestionNum berandSurv eyType" Ty peName="Ve teransAffa irs.Regist ries.Busin essManager .TBI.TBIIn strumentsM anager"> | |
386 | <Sel ectParamet ers> | |
387 | <asp:Contr olParamete r ControlI D="HiddenS urveyType" Direction ="Input" N ame="surve yTypeCode" Type="Str ing" /> | |
388 | <asp:Contr olParamete r ControlI D="HiddenQ 5" Directi on="Input" Name="que stionNumbe r" Type="S tring" /> | |
389 | </Se lectParame ters> | |
390 | </asp:Ob jectDataSo urce> | |
391 | <asp:Hid denField I D="HiddenQ 5" runat=" server" Vi sible="fal se" Value= "5" /> | |
392 | </ td> | |
393 | </tr> | |
394 | <tr> | |
395 | <t d colspan= "100%"> | |
396 | | |
397 | </ td> | |
398 | </tr> | |
399 | <tr> | |
400 | <t d> | |
401 | | |
402 | </ td> | |
403 | <t d> | |
404 | <b>6.</b > <as p:Label ID ="LabelFor Q6" runat= "server" A ssociatedC ontrolID=" rblQ6" Ski nID="DataL abel" TabI ndex="150" ></asp:Lab el> | |
405 | <span cl ass="requi redField"> *</span> | |
406 | </ td> | |
407 | </tr> | |
408 | <tr> | |
409 | <t d> </ td> | |
410 | <t d> | |
411 | <asp:Rad ioButtonLi st ID="rbl Q6" runat= "server" R epeatDirec tion="Vert ical" Data SourceID=" ObjectData SourceQ6" TabIndex=" 160" | |
412 | Data TextField= "CHOICE_TE XT" DataVa lueField=" STD_QUESTI ON_CHOICE_ ID" CssCla ss="" Vali dationGrou p="OnSave" AutoPostB ack="false "> | |
413 | </asp:Ra dioButtonL ist> | |
414 | <asp:Req uiredField Validator ID="Requir edFieldVal idator6" r unat="serv er" Contro lToValidat e="rblQ6" TabIndex=" 161" Valid ationGroup ="OnSave" | |
415 | Disp lay="Dynam ic" ErrorM essage="* Selection is require d."></asp: RequiredFi eldValidat or> | |
416 | <asp:Obj ectDataSou rce ID="Ob jectDataSo urceQ6" ru nat="serve r" SelectM ethod="Get ChoicesByQ uestionNum berandSurv eyType" Ty peName="Ve teransAffa irs.Regist ries.Busin essManager .TBI.TBIIn strumentsM anager"> | |
417 | <Sel ectParamet ers> | |
418 | <asp:Contr olParamete r ControlI D="HiddenS urveyType" Direction ="Input" N ame="surve yTypeCode" Type="Str ing" /> | |
419 | <asp:Contr olParamete r ControlI D="HiddenQ 6" Directi on="Input" Name="que stionNumbe r" Type="S tring" /> | |
420 | </Se lectParame ters> | |
421 | </asp:Ob jectDataSo urce> | |
422 | <asp:Hid denField I D="HiddenQ 6" runat=" server" Vi sible="fal se" Value= "6" /> | |
423 | </ td> | |
424 | </tr> | |
425 | <tr> | |
426 | <t d colspan= "100%"> | |
427 | | |
428 | </ td> | |
429 | </tr> | |
430 | <tr> | |
431 | <t d> | |
432 | | |
433 | </ td> | |
434 | <t d> | |
435 | <b>7.</b > <as p:Label ID ="LabelFor Q7" runat= "server" A ssociatedC ontrolID=" rblQ7" Ski nID="DataL abel" TabI ndex="165" ></asp:Lab el> | |
436 | <span cl ass="requi redField"> *</span> | |
437 | </ td> | |
438 | </tr> | |
439 | <tr> | |
440 | <t d> </ td> | |
441 | <t d> | |
442 | <asp:Rad ioButtonLi st ID="rbl Q7" runat= "server" R epeatDirec tion="Vert ical" Data SourceID=" ObjectData SourceQ7" TabIndex=" 170" | |
443 | Data TextField= "CHOICE_TE XT" DataVa lueField=" STD_QUESTI ON_CHOICE_ ID" CssCla ss="" Vali dationGrou p="OnSave" AutoPostB ack="false "> | |
444 | </asp:Ra dioButtonL ist> | |
445 | <asp:Req uiredField Validator ID="Requir edFieldVal idator7" r unat="serv er" Contro lToValidat e="rblQ7" TabIndex=" 171" Valid ationGroup ="OnSave" | |
446 | Disp lay="Dynam ic" ErrorM essage="* Selection is require d."></asp: RequiredFi eldValidat or> | |
447 | <asp:Obj ectDataSou rce ID="Ob jectDataSo urceQ7" ru nat="serve r" SelectM ethod="Get ChoicesByQ uestionNum berandSurv eyType" Ty peName="Ve teransAffa irs.Regist ries.Busin essManager .TBI.TBIIn strumentsM anager"> | |
448 | <Sel ectParamet ers> | |
449 | <asp:Contr olParamete r ControlI D="HiddenS urveyType" Direction ="Input" N ame="surve yTypeCode" Type="Str ing" /> | |
450 | <asp:Contr olParamete r ControlI D="HiddenQ 7" Directi on="Input" Name="que stionNumbe r" Type="S tring" /> | |
451 | </Se lectParame ters> | |
452 | </asp:Ob jectDataSo urce> | |
453 | <asp:Hid denField I D="HiddenQ 7" runat=" server" Vi sible="fal se" Value= "7" /> | |
454 | </ td> | |
455 | </tr> | |
456 | <tr> | |
457 | <t d colspan= "100%"> | |
458 | | |
459 | </ td> | |
460 | </tr> | |
461 | <tr> | |
462 | <t d> | |
463 | | |
464 | </ td> | |
465 | <t d> | |
466 | <asp:But ton ID="bt nCalculate " runat="s erver" Tex t="Calcula te" OnClic k="btnCalc ulate_Clic k" TabInde x="181" /> | |
467 | <br /><b r /> | |
468 | </ td> | |
469 | </tr> | |
470 | ||
471 | <tr> | |
472 | <t d> | |
473 | | |
474 | </ td> | |
475 | <t d> | |
476 | <!--Ques tion 8: To tal Score --> | |
477 | <!-- Get text in c ode-behind --> | |
478 | <asp:Lab el ID="Lab elForQ8" r unat="serv er" SkinID ="DataLabe l" TabInde x="190"></ asp:Label> : | |
479 | <asp:Lab el ID="lbl TotalScore " runat="s erver" Fon t-Bold="tr ue" Text=" 0" TabInde x="191"></ asp:Label> | |
480 | </ td> | |
481 | </tr> | |
482 | <tr> | |
483 | <t d colspan= "100%"> | |
484 | <asp:Lab el ID="lbl SurveyErro r" runat=" server" Ta bIndex="19 2" CssClas s="require dField"></ asp:Label> | |
485 | </ td> | |
486 | </tr> | |
487 | <tr> | |
488 | <t d> | |
489 | | |
490 | </ td> | |
491 | <t d> | |
492 | <hr /> | |
493 | </ td> | |
494 | </tr> | |
495 | ||
496 | ||
497 | </table> | |
498 | ||
499 | ||
500 | <!-- End Q uestion Ar ea --> | |
501 | <br /> | |
502 | </as p:Panel> | |
503 | ||
504 | <tab le width=" 800px"> | |
505 | <tr> | |
506 | <td st yle="width :70px"> | |
507 | &n bsp; | |
508 | </td> | |
509 | <td> | |
510 | <t elerik:Rad AjaxPanel ID="RadAja xPanel1" r unat="serv er"> | |
511 | <asp:Tim er ID="Ina ctiveTimer " Interval ="300000" Enabled="t rue" runat ="server" OnTick="In ActiveTime r_Tick" /> | |
512 | </ telerik:Ra dAjaxPanel > | |
513 | <a sp:Button ID="btnSav eSurveyDra ft" runat= "server" U seSubmitBe havior="tr ue" Text=" Save Draft " Width="1 30px" OnCl ick="btnSa veSurveyDr aft_Click" | |
514 | Validati onGroup="O nSaveDraft " TabIndex ="200" /> | |
515 | <a sp:Button ID="btnSub mitSurvey" runat="se rver" UseS ubmitBehav ior="true" Text="Sav e and Prep are Note" Width="180 px" OnClic k="btnSubm it_Click" | |
516 | Validati onGroup="O nSave" Tab Index="201 " /> | |
517 | <a sp:Button ID="btnCan celSurvey" runat="se rver" TabI ndex="202" UseSubmit Behavior=" false" Tex t="Cancel" Width="13 0px" OnCli ck="btnCan cel_Click" /> | |
518 | </td> | |
519 | </tr> | |
520 | <tr> | |
521 | <td> | |
522 | &n bsp; | |
523 | </td> | |
524 | <td> | |
525 | <i>Used vi a courtesy of www. DNS . DNS with permi ssion from Charles M .Morin, Ph .D., Unive rsite Lava l</i> | |
526 | </td> | |
527 | </tr> | |
528 | </ta ble> | |
529 | ||
530 | ||
531 | </Conten tTemplate> | |
532 | </ asp:Update Panel> | |
533 | </tele rik:RadCod eBlock> | |
534 | </asp:Cont ent> | |
535 | ||
536 |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.