forked from DevoInc/browser-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowserify-query.html
More file actions
35 lines (31 loc) · 1004 Bytes
/
Copy pathbrowserify-query.html
File metadata and controls
35 lines (31 loc) · 1004 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
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Devo SDK: Browserify Query Demo</title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<h1>Devo SDK: Browserify Query Demo</h1>
<p>
Run this command to generate the bundle from the <a href="browserify-query.js">code</a>:
</p>
<pre>
browserify ./examples/browserify-query.js -o ./examples/query-bundle.js
</pre>
<div>
<button id="btn_launch">Launch Query</button>
<button id="btn_xslt">Excel Download</button>
<button id="btn_csv">CSV Download</button>
<button id="btn_tsv">TSV Download</button>
<button id="btn_msgpack">Msgpack Download</button>
<button id="btn_raw">Raw Download</button>
<button id="btn_json">JSON Download</button>
</div>
<hr>
<div id="divTable" class="divTable greenTable" style="width: 95%;border: 1px solid #000;" >
<div id="divTableBody" class="divTableBody"></div>
</div>
<script src="./query-bundle.js"></script>
</body>
</html>