Last change
on this file since 146 was
146,
checked in by keesvb, 13 years ago
|
added helper functions to Subject and Template classes to easily get the template fields, and added a demonstration of use in the sandbox
|
File size:
668 bytes
|
Line | |
---|
1 | <%-- |
---|
2 | Created by IntelliJ IDEA. |
---|
3 | User: kees |
---|
4 | Date: 28-jan-2010 |
---|
5 | Time: 14:36:03 |
---|
6 | |
---|
7 | The sandbox is meant for internal communication over code examples etc. |
---|
8 | --%> |
---|
9 | <%@ page contentType="text/html;charset=UTF-8" %> |
---|
10 | <html> |
---|
11 | <head><title>Sandbox</title></head> |
---|
12 | <body> |
---|
13 | <h1>Sandbox</h1> |
---|
14 | <h2>Subject Template fields demo</h2> |
---|
15 | <table> |
---|
16 | <tr> |
---|
17 | <td>Name</td> |
---|
18 | <g:each in="${fields}" var="field"> |
---|
19 | <td>${field.name} (${field.type})</td> |
---|
20 | </g:each> |
---|
21 | </tr> |
---|
22 | <g:each in="${subjects}" var="subject"> |
---|
23 | <tr> |
---|
24 | <td>${subject.name}</td> |
---|
25 | <g:each in="${fields}" var="field"> |
---|
26 | <td>${subject.getFieldValue(field.name)}</td> |
---|
27 | </g:each> |
---|
28 | </tr> |
---|
29 | </g:each> |
---|
30 | </tr> |
---|
31 | </table> |
---|
32 | </body> |
---|
33 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.