forked from arnoudkooi/ServiceNow-Utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewdata.html
56 lines (49 loc) · 1.77 KB
/
viewdata.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
<html data-bs-theme="dark">
<head>
<title>View data - SN Utils</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/datatables.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/viewdata.css">
<script src="js/purify.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/moment.js"></script>
<script src="js/datatables.min.js"></script>
<script src="js/datatables-datetime.js"></script>
<script src="viewdata.js"></script>
<base href="/#">
</head>
<body>
<div id="fixheader">
<div id="title"><img class="wdth40" src="/images/icon128.png" alt="SN Utils logo" /> View Data details
<span id="whotheheck">Table | Created | Updated</span>
</div>
<div class="input-group">
<input type="search" id="tbxdataexplore" name="tbxdataexplore" class="form-control form-control-sm sync"
placeholder="Search data...">
<div id="divhideempty">
<input class="form-check-input sync" type="checkbox" id="cbxhideempty" name="cbxhideempty">
<label class="form-check-label" for="cbxhideempty" title="Hide rows where the field is empty">
Hide empty rows.
</label></input>
</div>
<button id='btnrefreshdataexplore' class="btn btn-outline-secondary btn-sm" title="Refresh data"
type="button">Refresh</button>
</div>
</div>
<table id="dataexplore" class="display table-condensed dxp">
<thead>
<tr>
<th>Label</th>
<th>Name</th>
<th>Type</th>
<th>Value</th>
<th>Display Value</th>
<th>Has Data</th>
</tr>
</thead>
</table>
</body>
</html>