-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathuploadRowSegmentData.jsp
More file actions
45 lines (35 loc) · 1.41 KB
/
uploadRowSegmentData.jsp
File metadata and controls
45 lines (35 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<%@ include file="/common/taglibs.jsp"%>
<title><fmt:message key="upload.file.title"/></title>
<content tag="heading"><fmt:message key="upload.file.title"/></content>
<body id="submissions"/>
<p>Use this form to upload <b>Row Segment Data</b></p>
<!--form method="post" enctype="multipart/form-data" onsubmit="setTimeout('queryStatus()', 200);"-->
<!-- Line above is needed to show the actal amount of data uploaded using Ajax -->
<!-- Since we are not ready for it that is why line is commented -->
<form method="post" enctype="multipart/form-data" >
<fieldset>
<legend>Upload tab delimited file
<a href="#" class="openHelp" onclick="openHelp('uploadRowSegmentData')"><img class="iconButton" src="<fmt:message key="icons.help"/>" /></a>
</legend>
<table border="0" cellpadding="1">
<tr>
<th> </th>
<td>
<input type="file" name="data" size="40"/>
</td>
</tr>
<c:if test="${publicationState eq 'Ready' || publicationState eq 'Published'}">
<Strong>For this study, file upload feature is not available.</Strong>
</c:if>
<c:if test="${publicationState eq 'NotReady'}">
<tr>
<td></td>
<td class="buttonBar">
<input type="submit" name="upload" value="Upload"/>
<input type="submit" name="_cancel" value = "Cancel"/>
</td>
</tr>
</c:if>
</table>
</fieldset>
</form>