-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (98 loc) · 4.04 KB
/
index.html
File metadata and controls
117 lines (98 loc) · 4.04 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<title>Clear Filters</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<style>
html,
body {
margin: 0;
width: 100%;
height: 100%;
font-family: Helvetica, sans-serif;
display: flex;
align-items: stretch;
flex-direction: column;
}
.header {
color: #fff;
background-color: #5031a9;
background: linear-gradient(#454aa1, #5031a9);
height: 300px;
text-align: center;
width: 100%;
}
.hc {
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
align-content: center;
margin: 0px auto;
max-width: 800px;
height: 100%;
}
.hc p,
.hc h1 {
width: 100%;
}
.buttons {
display: flex;
justify-content: space-around;
width: 70%;
margin-top: 25px;
}
.content {
flex: auto;
background-color: #f4f4f4;
width: 100%;
}
.cc {
margin: 0px auto;
padding-top: 50px;
max-width: 800px;
height: 100%;
}
.cc h2 {
border-bottom: #c5c5c5 1px solid;
}
a {
color: #5031a9;
}
a:hover {
color: #5031a9;
}
</style>
</head>
<body>
<div class="header">
<div class="hc">
<h1>Clear Filters Extension</h1>
<p>An extension to add a 'clear all filters' button and/or a 'reset all filters' button to your Tableau dashboard.</p>
<div class="buttons">
<a href="https://github.com/KeshiaRose/Clear-Filters" class="btn btn-light">View on GitHub</a>
<a href="https://keshiarose.github.io/Clear-Filters/ClearFilters.trex" class="btn btn-light">Download Manifest File</a>
</div>
</div>
</div>
<div class="content">
<div class="cc">
<h2>Clear Filters Extension</h2>
<p>This extension enables you to add a "clear all filters" button and/or a "reset all filters" button directly into your Tableau dashboard. Great for embedded dashboards that do not have the toolbar showing or for a more intuitive interface.</p>
<h2>Installing the Extension</h2>
<p>Download and install the Extensions API version of Tableau Desktop from the <a href="https://prerelease.tableau.com">Tableau Extensions API Developer Preview</a> site. Under <strong>Resources</strong>, click <strong>Extensions API Software Downloads</strong>.</p>
<p>Current version: 18.0411.1540</p>
<p>Download the Clear Filter <a href="https://keshiarose.github.io/Clear-Filters/ClearFilters.trex">manifest file</a> and save it wherever you want.</p>
<h2>Using the Extension</h2>
<ol>
<li>Drag in a new Extension object to your dashboard.</li>
<li>Find the manifest (.trex) file you downloaded above.</li>
<li>Choose if you want to show a “Clear all filters” button and/or a "Revert all filters” button.</li>
<li>If you show the “reset all filters” button, make sure to set the default filter settings by clicking “Set current filters as default.”</li>
<li>Hit save to save settings.</li>
</ol>
<p>To change the default settings at any time you can open the context menu for the extension and click "Configure". Pressing the button “Update default filters” again will set the default filters to whatever is currently set.</p>
</div>
</div>
</body>
</html>