-
Notifications
You must be signed in to change notification settings - Fork 204
/
table_widget.html
58 lines (55 loc) · 1.47 KB
/
table_widget.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
57
58
<div>
Download table as: [
<a href="/registry/ontologies.yml">YAML</a> |
<a href="/registry/ontologies.jsonld">JSON-LD</a> |
<a href="/registry/ontologies.ttl">RDF/Turtle</a>
]
</div>
<div style="padding-bottom: 10px; padding-top: 20px">
<label for="searchVal">Search Table</label>
<input
type="text"
style="width: 60%"
class="form-control"
id="searchVal"
placeholder="Search table ..."
/>
</div>
<div class="row">
<div class="col-md-3">
<label for="dd-domains">Ontology Domains:</label>
<select id="dd-domains"></select>
</div>
<div class="form-group form-check col-md-3">
<input
type="checkbox"
class="form-check-input"
id="groupByDomain"
data-filter="domain"
checked
/>
<label class="form-check-label" for="groupByDomain">Group By Domain</label>
</div>
<div class="form-group form-check col-md-3">
<input
type="checkbox"
class="form-check-input"
id="hideInactive"
data-filter="activity_status"
checked
/>
<label class="form-check-label" for="hideInactive">Hide Inactive</label>
</div>
<div class="form-group form-check col-md-3">
<input
type="checkbox"
class="form-check-input"
id="hideObsolete"
data-filter="is_obsolete"
checked
/>
<label class="form-check-label" for="hideObsolete">Hide Obsolete</label>
</div>
</div>
<!--below dic is been populated by javascript with table content-->
<div id="tableDiv"></div>