Changeset 889 for trunk/grails-app/views
- Timestamp:
- Sep 16, 2010, 10:38:02 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/simpleQuery/common/_query.gsp
r791 r889 26 26 <div class="element"> 27 27 <div class="description">Material (e.g. 'liver')</div> 28 <div class="input"><g:select name="organ " from="" value="${organ}" noSelection="['':'--- select organ/tissue ---']"/></div>28 <div class="input"><g:select name="organs" from="${organs}" value="" noSelection="['':'--- select organ/tissue ---']"/></div> 29 29 </div> 30 30 </div> … … 36 36 <g:if test="${showFirstRowCompounds}"> 37 37 <div id="compoundRow1"> 38 <div class="descriptionSA">Compound</div><div class="input"><g:textField name="sa_compound" value=""/></div><div class="descriptionSA">Operator</div><div class="input" id="operatorInput"><g:select name=" operator" from="${operators}" value="="/></div><div class="descriptionSA">Value</div><div class="input"><g:textField name="sa_value" value=""/></div>38 <div class="descriptionSA">Compound</div><div class="input"><g:textField name="sa_compound" value=""/></div><div class="descriptionSA">Operator</div><div class="input" id="operatorInput"><g:select name="sa_operator" from="${operators}" value="="/></div><div class="descriptionSA">Value</div><div class="input"><g:textField name="sa_value" value=""/></div> 39 39 </div> 40 40 </g:if> … … 75 75 <thead> 76 76 <tr> 77 <g:sortableColumn property="id" title="Result" /> 77 78 <g:sortableColumn property="id" title="${message(code: 'study.id', default: 'ID')}" /> 78 79 <g:sortableColumn property="title" title="${message(code: 'study.title.label', default: 'Study')}" /> … … 83 84 <g:each in="${listStudies}" var="Study" status="i" > 84 85 <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> 86 <td><g:checkBox name="study${Study.id}" value="${true}" /></td> 85 87 <td><g:link url="[action:'show',controller:'study', id:Study.id]">${fieldValue(bean: Study, field: "id")}</g:link></td> 86 88 <td><g:link url="[action:'show',controller:'study', id:Study.id]">${fieldValue(bean: Study, field: "title")}</g:link></td>
Note: See TracChangeset
for help on using the changeset viewer.