Last change
on this file since 632 was
632,
checked in by tabma, 12 years ago
|
- extra step for Simple Import Wizard implemented for easy adding and editing of cells (which were not imported yet)
|
File size:
539 bytes
|
Line | |
---|
1 | <% |
---|
2 | /** |
---|
3 | * Data preview template which will display cells and columns from a matrix datasource |
---|
4 | * |
---|
5 | * @author Tjeerd Abma |
---|
6 | * @since 20100622 |
---|
7 | * @package importer |
---|
8 | * |
---|
9 | * Revision information: |
---|
10 | * $Rev: $ |
---|
11 | * $Author: $ |
---|
12 | * $Date: $ |
---|
13 | */ |
---|
14 | %> |
---|
15 | <table width="100%"> |
---|
16 | <g:each var="row" in="${datamatrix}"> |
---|
17 | <tr> |
---|
18 | <g:each var="cell" in="${row}"> |
---|
19 | <td class="datamatrix"> |
---|
20 | <g:if test="${cell.toString()==''}">.</g:if> |
---|
21 | <g:else><importer:displayCell cell="${cell}"/></g:else> |
---|
22 | </td> |
---|
23 | </g:each> |
---|
24 | </tr> |
---|
25 | </g:each> |
---|
26 | </table> |
---|
Note: See
TracBrowser
for help on using the repository browser.