-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport.html
59 lines (54 loc) · 2.04 KB
/
export.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Document</title>
<link rel="stylesheet" href="styles/export.css">
<link rel="stylesheet" href="lib/metro-all.min.css">
<link rel="stylesheet" type="text/css" href="styles/main.css">
<link rel="stylesheet" href="styles/export.css">
<script src=lib/Chart.min.js>
</script>
<script src="lib/odata.js"></script>
<script src="lib/metro.min.js"></script>
<script src="scripts/main.js"></script>
<script src="lib/xlsx.mini.js"></script>
<script src="lib/FileSaver.js"></script>
<script src="scripts/export.js"></script>
</head>
<body>
<header>
<h1>Advanced Material Information</h1>
<ul data-role="tabs" data-on-tab="" data-cls-tabs="flex-justify-center mt-2" data-expand-point="sm">
<li><a href="index.html">Dashboard</a></li>
<li><a href="#">Statistics</a></li>
<li><a href="material-information.html">Material information</a></li>
<li><a href="locations.html">Locations</a></li>
<li class="active"><a href="export.html">Export</a></li>
</ul>
</header>
<body>
<main>
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Einheit</th>
<th>Materialart</th>
<th>Kürzel</th>
<th>Gueltig von</th>
<th>Gueltig bis</th>
<th>Gewicht</th>
<th>Gewichteinheit</th>
<th>Einheitspreis</th>
<th>Währung</th>
</tr>
</thead>
<tbody id="tab"></tbody>
</table>
<button id="createExcel" class="button primary large">Für Excel exportieren</button>
</main>
</body>
</body>