-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvertXlsToRuntimeData.html
44 lines (39 loc) · 1.06 KB
/
convertXlsToRuntimeData.html
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
<html>
<head>
<style>
#filedrag, #lclFiledrag
{
display: none;
font-weight: bold;
text-align: center;
padding: 1em 0;
margin: 1em 0;
color: #555;
border: 2px dashed #555;
border-radius: 7px;
cursor: default;
}
#filedrag.hover, #lclFiledrag.hover
{
color: #f00;
border-color: #f00;
border-style: solid;
box-shadow: inset 0 3px 4px #888;
}
</style>
<script src="js/lib/sheetjs/xlsx.full.min.js"></script>
<script src="js/utils.js"></script>
<script src="js/xls2data.js"></script>
</head>
<body onload="initControlListeners();">
<fieldset>
<legend>FCL HTML File Upload</legend>
<div id="filedrag">Select and drop FCL files here</div>
</fieldset>
<div style="height:50px"></div>
<fieldset>
<legend>LCL HTML File Upload</legend>
<div id="lclFiledrag">Select and drop LCL files here</div>
</fieldset>
</body>
</html>