Last change
on this file since 2 was
2,
checked in by robert@…, 12 years ago
|
Initial import of basic functionality
|
File size:
1.3 KB
|
Line | |
---|
1 | <div id="enterTagsDialog" class="tabbedDialog"> |
---|
2 | <div id="tagsTabs"> |
---|
3 | <ul> |
---|
4 | <li><a href="#manual">Manual</a></li> |
---|
5 | <li><a href="#excel">Excel</a></li> |
---|
6 | </ul> |
---|
7 | <div id="manual"> |
---|
8 | <h2>Edit sample data manually</h2> |
---|
9 | <p> |
---|
10 | Enter tag sequence and oligo number for samples mentioned below. |
---|
11 | </p> |
---|
12 | <g:form name="updateTagsManually" action="updateTagsManually" id="${assay.id}"> |
---|
13 | <table> |
---|
14 | <thead> |
---|
15 | <tr> |
---|
16 | <th>Sample</th> |
---|
17 | <th>Tag sequence</th> |
---|
18 | <th>Oligo number</th> |
---|
19 | </tr> |
---|
20 | </thead> |
---|
21 | <g:each in="${sortedAssaySamples}" var="assaySample" status="i"> |
---|
22 | <tr> |
---|
23 | <td>${assaySample.sample?.name}</td> |
---|
24 | <td><g:textField name="assaySample.${assaySample.id}.tagSequence" value="${assaySample.tagSequence}" /></td> |
---|
25 | <td><g:textField name="assaySample.${assaySample.id}.oligoNumber" value="${assaySample.oligoNumber}" /></td> |
---|
26 | </tr> |
---|
27 | </g:each> |
---|
28 | </table> |
---|
29 | </g:form> |
---|
30 | </div> |
---|
31 | <div id="excel"> |
---|
32 | <h2>Edit sample data by excel file</h2> |
---|
33 | <p> |
---|
34 | Enter tag sequence and oligo number for samples in an excel file. <g:link action="downloadTagsExcel" id="${assay.id}">Download an example</g:link> |
---|
35 | </p> |
---|
36 | <g:form name="uploadExcel" action="parseTagExcel" id="${assay.id}"> |
---|
37 | <g:fileUpload name="tagExcel" value="" onUpload="handleTagExcel"></g:fileUpload> |
---|
38 | </g:form> |
---|
39 | </div> |
---|
40 | </div> |
---|
41 | </div> |
---|
Note: See
TracBrowser
for help on using the repository browser.