-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathplugin.html
More file actions
31 lines (26 loc) · 814 Bytes
/
plugin.html
File metadata and controls
31 lines (26 loc) · 814 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Plugin test</title>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1"/>
<script src="http://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="./build/reporttable.js"></script>
<style>div {margin-bottom:10px;}</style>
</head>
<body>
<div class="r" id="r1"></div>
<div class="r" id="r2"></div>
<div class="r" id="r3"></div>
<script>
var r1 = { id: "tWg9OiyV7mu", el: "r1" };
var r2 = { id: "SEMVWsnVblY", el: "r2" };
var r3 = { id: "KJFbpIymTAo", el: "r3" };
reportTablePlugin.url = '//localhost:8080';
reportTablePlugin.username = 'admin';
reportTablePlugin.password = 'district';
reportTablePlugin.loadingIndicator = true;
reportTablePlugin.load(r1, r2, r3);
</script>
</body>
</html>