forked from web2solutions/csvViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.36 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.36 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
<!DOCTYPE HTML>
<html lang="pt-br" manifest="cache.appcache" -->
<head>
<meta charset="UTF-8">
<title>Big Inventory</title>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
background-color: #ebebeb;
overflow: hidden;
font-family:arial;
}
</style>
<link rel="stylesheet" href="thirdparty/codebase4.4_std/dhtmlx.css">
<link rel="icon" href="/favicon.ico">
<script src="thirdparty/jquery.min.js"></script>
<script type="text/javascript" src="thirdparty/codebase4.4_std/dhtmlx.js"></script>
<script type="text/javascript" src="thirdparty/papaparse.js"></script>
<script type="text/javascript" src="lib/csvViewer.js"></script>
<script type="text/javascript" src="lib/csvViewer.view.js"></script>
<script type="text/javascript" src="lib/csvViewer.view.setup.js"></script>
<script type="text/javascript" src="lib/csvViewer.setup.js"></script>
<script type="text/javascript" src="lib/csvViewer.settings.js"></script>
<script type="text/javascript" src="lib/csvViewer.model.js"></script>
<script>
window.addEventListener('load', function()
{
var call_config = {};
csvViewer.start(call_config).then( function(response) {
},function(response) {
} );
}, false);
</script>
</head>
<body>
</body>
</html>