Changeset 9 for trunk/grails-app/views/assay/show.gsp
- Timestamp:
- Jan 28, 2011, 12:30:39 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/assay/show.gsp
r7 r9 8 8 9 9 <g:javascript src="jquery.ui.tabbeddialog.js" /> 10 <g:javascript src="assay.show.addFilesDialog.js" />11 10 <g:javascript src="assay.show.enterTagsDialog.js" /> 12 11 <g:javascript src="assay.show.runDialogs.js" /> 12 <g:javascript src="assay.show.showRunDialog.js" /> 13 13 14 <g:javascript src="showSampleDialog.js" /> 14 <g:javascript src="a ssay.show.showRunDialog.js" />15 <g:javascript src="addFilesDialog.js" /> 15 16 16 17 <g:javascript src="fileuploader.new.js" /> … … 65 66 <th nowrap>name</th> 66 67 <th nowrap>run</th> 67 <th nowrap>tag sequence</th> 68 <th nowrap>subject</th> 69 <th nowrap>event</th> 68 70 <th nowrap># sequences</th> 69 <th nowrap># unique sequences</th>70 71 </tr> 71 72 </thead> … … 76 77 <td><a href="#" onClick="showSample(${assaySample.id}, 'assay'); return false;">${assaySample.sample.name}</a></td> 77 78 <td>${assaySample.run?.name}</td> 78 <td>${assaySample.tagSequence}</td> 79 <td>${assaySample.sample.subject}</td> 80 <td>${assaySample.sample.event}</td> 79 81 <td>${assaySample.numSequences()}</td> 80 <td>81 <g:if test="${assaySample.numUniqueSequences > 0}">82 ${assaySample.numUniqueSequences}83 </g:if>84 <g:else>85 -86 </g:else>87 </td>88 82 </tr> 89 83 </g:each> … … 138 132 </g:else> 139 133 </td> 140 <td class="button"><a href="#" onClick="showEditRunDialog( ${run.id} , '${run.name?.encodeAsJavaScript()}', '${run.date ? run.date.format( 'yyyy-mm-dd' ).encodeAsJavaScript() : ''}', '${run.machine?.encodeAsJavaScript()}', '${run.supplier?.encodeAsJavaScript()}', '${run.parameterFile?.encodeAsJavaScript()}'); return false;"><img src="${fam.icon(name: 'application_edit')}" /></a></td>134 <td class="button"><a href="#" onClick="showEditRunDialog( ${run.id} ); return false;"><img src="${fam.icon(name: 'application_edit')}" /></a></td> 141 135 <td class="button"> 142 136 <g:if test="${run.samples(assay.id).size()}">
Note: See TracChangeset
for help on using the changeset viewer.