Changeset 1659
- Timestamp:
- Mar 22, 2011, 5:45:42 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/studycapturing/AssayController.groovy
r1633 r1659 177 177 178 178 // remove me 179 println '$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$' 179 180 println flash 181 println '$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$' 180 182 181 183 [fieldMap: fieldMap, measurementTokens: measurementTokens.name] … … 193 195 194 196 // remove me 197 println '##############################################################' 195 198 println flash 199 println '##############################################################' 196 200 197 201 // did the assay id value come across? … … 248 252 measurementTokensSelection = measurementToken.collect{[name: it]} 249 253 250 } else {251 measurementTokensSelection = flash.measurementTokens252 254 } 253 255 -
trunk/grails-app/controllers/dbnp/studycapturing/StudyWizardController.groovy
r1650 r1659 1280 1280 } 1281 1281 1282 1282 /** 1283 1283 * re-usable code for handling publications form data 1284 1284 * @param study Study object to update -
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r1638 r1659 734 734 } 735 735 } 736 }736 } -
trunk/grails-app/views/assay/selectAssay.gsp
r1583 r1659 40 40 onChange="${remoteFunction(controller:'study',action:'ajaxGetAssays',params:'\'id=\'+escape(this.value)',onComplete: 'updateAssay(XMLHttpRequest.responseText, \'assay\')')}"/> 41 41 <g:select optionKey="id" name="assayId" id="assay" from=""/> 42 %{--<g:select optionKey="id" name="assayId" id="assay" from="${assays}"/>--}%43 42 <g:submitButton name="submit" value="Submit"/> 44 43 </g:form> -
trunk/grails-app/views/assay/selectFields.gsp
r1583 r1659 54 54 55 55 <assayExporter:categorySelector category="Measurements" ref="cat_${catNum}"/> 56 <g:select name="measurementToken" id="measurementToken" from="${measurementTokens}" class="field" multiple="true"/>56 <g:select name="measurementToken" id="measurementToken" from="${measurementTokens}" value="${measurementTokens}" class="field" multiple="true" /> 57 57 <br /><br /> 58 58 <g:submitButton name="submit" value="Submit"/> -
trunk/test/unit/dbnp/studycapturing/AssayServiceTests.groovy
r1594 r1659 133 133 134 134 row.eachWithIndex { cell, ci -> 135 135 // TODO: what happens when there are empty cells 136 136 readData[ri][ci] = (cell.cellType == Cell.CELL_TYPE_NUMERIC) ? cell.numericCellValue : cell.stringCellValue 137 137
Note: See TracChangeset
for help on using the changeset viewer.