-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAppAudit.html
executable file
·50 lines (45 loc) · 2.29 KB
/
AppAudit.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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Qlik Sense: Mashup</title>
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta http-equiv="cleartype" content="on">
<!--Add host to these 3 links if the mashup is on another webserver than qlik sense static content-->
<link rel="stylesheet" href="./bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="./bootstrap/bootstrap-theme.min.css">
<link rel="stylesheet" href="/resources/autogenerated/qlikui.css">
<link rel="stylesheet" href="/resources/assets/client/client.css" media="all">
<link rel="stylesheet" href="./AppAudit.css">
<script src="/resources/assets/external/requirejs/require.js"></script>
<script src="./bootstrap/bootstrap.min.js"></script>
<script src="AppAudit.js"></script>
</head>
<body style="overflow:auto">
<div class="container">
<div class="row">
<div id="selector-content"></div>
<label for="checkbox-group">Show me: </label>
<div id="checkbox-group">
<label class="checkbox-inline"><input type="checkbox" id="sheets-checkbox" value="sheets">Sheets with Objects</label>
<label class="checkbox-inline"><input type="checkbox" id="measures-checkbox" value="measures">Measures</label>
<label class="checkbox-inline"><input type="checkbox" id="dimensions-checkbox" value="dimensions">Dimensions</label>
<label class="checkbox-inline"><input type="checkbox" id="bookmarks-checkbox" value="bookmarks">Bookmarks</label>
<label class="checkbox-inline"><input type="checkbox" id="fields-checkbox" value="fields">Fields</label>
<button class="btn btn-primary pull-right" id="update-results" disabled>Update Results</button>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div id='tables'></div>
</div>
</div>
</body>
</html>