Changeset 214
- Timestamp:
- Feb 26, 2010, 11:52:38 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/wizard/pages/_eventDescriptions.gsp
r213 r214 19 19 <span class="title">Describe all unique event types that occur in your study</span> 20 20 These unique events are, for example, treatments, challenges and sampling events. Every event description 21 should be unique. If your study, for example, samples both blood as well as tissue, then create two sample 22 descriptions. One for 'sampling blood', and one for 'sampling tissue'. 21 should be unique. If your study, for example, samples both blood as well as tissue on one or more subjects, 22 then create two sample descriptions. One for 'sampling blood', and one for 'sampling tissue'. 23 </span> 24 25 <span class="info"> 26 <span class="title">Note!</span> 27 Currently 'classification' display all terms because there is no way to machine interpret 28 the different values. So please -for now- make sure to pick the Ontology reference applicable for 29 events until this particular challenge is solved. 23 30 </span> 24 31 25 32 <wizard:termElement name="classification" description="Classification" error="classification" value="${values?.classification}"> 26 The classification33 The ontology reference for this particular type of event 27 34 </wizard:termElement> 28 35 <wizard:textFieldElement name="name" description="Name" error="name" value="${values?.name}"> -
trunk/web-app/js/timepicker-0.2.1.js
r134 r214 217 217 } 218 218 219 this.resize(); 220 221 $('#' + this._mainDivId).show(); 219 // timepicker did not show correctly on initial show due to the fact 220 // that the show animation wasn't over when resizing was performed, 221 // hence using an incorrect datepicker width. Now calling resize method 222 // AFTER show animation has finished 223 var that = this; 224 $('#' + this._mainDivId).show('slow',function() { 225 that.resize(); 226 }); 222 227 223 228 this._visible = true;
Note: See TracChangeset
for help on using the changeset viewer.