Last change
on this file since 1581 was
1581,
checked in by work@…, 11 years ago
|
set keyword expansion
|
-
Property svn:keywords set to
Rev Author Date
|
File size:
1.3 KB
|
Line | |
---|
1 | <%-- |
---|
2 | Created by IntelliJ IDEA. |
---|
3 | User: siemensikkema |
---|
4 | Date: 2/3/11 |
---|
5 | Time: 1:29 PM |
---|
6 | --%> |
---|
7 | |
---|
8 | <%@ page contentType="text/html;charset=UTF-8" %> |
---|
9 | <html> |
---|
10 | <head> |
---|
11 | <meta name="layout" content="main" /> |
---|
12 | <title>Select assay fields</title> |
---|
13 | |
---|
14 | <style type="text/css"> |
---|
15 | |
---|
16 | .selectCategoryDiv{ |
---|
17 | float: left; |
---|
18 | width: auto; |
---|
19 | } |
---|
20 | |
---|
21 | .selectFieldDiv{ |
---|
22 | } |
---|
23 | |
---|
24 | .clear {clear: both;} |
---|
25 | |
---|
26 | </style> |
---|
27 | </head> |
---|
28 | <body> |
---|
29 | <div> |
---|
30 | <g:form name="fieldSelectForm" action="compileExportData"> |
---|
31 | <div class="selectCategoryDiv"> |
---|
32 | |
---|
33 | <g:set var="catNum" value="${0}"/> |
---|
34 | |
---|
35 | <g:each in="${fieldMap + ['Measurement tokens':'']}"> |
---|
36 | |
---|
37 | <assay:categorySelector category="${it.key}" ref="cat_${catNum}"/><br/> |
---|
38 | <g:set var="catNum" value="${catNum + 1}"/> |
---|
39 | |
---|
40 | </g:each> |
---|
41 | |
---|
42 | </div> |
---|
43 | |
---|
44 | <div class="selectFieldDiv"> |
---|
45 | |
---|
46 | <g:set var="catNum" value="${0}"/> |
---|
47 | |
---|
48 | <g:each in="${fieldMap}"> |
---|
49 | |
---|
50 | <assay:fieldSelector ref="cat_${catNum}" fieldNames="${it.value}"/><br/> |
---|
51 | <g:set var="catNum" value="${catNum + 1}"/> |
---|
52 | |
---|
53 | </g:each> |
---|
54 | |
---|
55 | <g:select name="measurementToken" id="measurementToken" from="${measurementTokens}" noSelection="${[null:'All tokens']}"/> |
---|
56 | |
---|
57 | </div> |
---|
58 | |
---|
59 | <div class="clear"></div> |
---|
60 | |
---|
61 | <g:submitButton name="submit" value="Submit"/> |
---|
62 | |
---|
63 | </g:form> |
---|
64 | </div> |
---|
65 | </body> |
---|
66 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.