Changeset 1093 for trunk/grails-app/views
- Timestamp:
- Nov 6, 2010, 4:01:11 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/importer/common/_failedcells.gsp
r1083 r1093 32 32 <g:form name="failedcellsform" action="saveCorrectedCells"> 33 33 <g:each var="record" in="${failedcells}"> 34 <tr> 35 <td>${record.key.name}</td> 36 <td>${record.value.getRowIndex()}</td> 37 <td>${record.value}</td> 38 <td> 39 <input type="text" name="cell.index.${record.value.hashCode()}" rel="ontology-all-name"/> 40 <!-- <input type="hidden" name="cell.index.${record.value}-concept_id"/> 41 <input type="hidden" name="cell.index.${record.value}-ontology_id"/> 42 <input type="hidden" name="cell.index.${record.value}-full_id"/> --> 43 </td> 44 </tr> 34 <g:each var="list" in="${record}"> 35 <g:each var="cell" in="${list}"> 36 <tr> 37 <td>${cell.value.name}</td> 38 <td>-</td> 39 <td>${cell.value.value}</td> 40 <td> 41 <input type="text" name="cell.index.${cell.hashCode()}" rel="ontology-all-name"/> 42 <!-- <input type="hidden" name="cell.index.${cell.value}-concept_id"/> 43 <input type="hidden" name="cell.index.${cell.value}-ontology_id"/> 44 <input type="hidden" name="cell.index.${cell.value}-full_id"/> --> 45 </td> 46 </tr> 47 </g:each> 48 </g:each> 45 49 </g:each> 46 50 <tr>
Note: See TracChangeset
for help on using the changeset viewer.