-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (101 loc) · 4.04 KB
/
index.html
File metadata and controls
119 lines (101 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
118
119
<!DOCTYPE html>
<html>
<head>
<title>Dynamic Parameter</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: #155899;
background: linear-gradient(to right, #155899, #159858);
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;
color: #159858;
}
a {
color: #155899;
}
a:hover {
color: #155899;
}
</style>
</head>
<body>
<div class="header">
<div class="hc">
<h1>Dynamic Parameter Extension</h1>
<p>A Tableau Extension to add dynamic parameter capabilities to Tableau dashboards.</p>
<div class="buttons">
<a href="https://github.com/KeshiaRose/Dynamic-Parameter" class="btn btn-light">View on GitHub</a>
<a href="https://keshiarose.github.io/Dynamic-Parameter/DynamicParameter.trex" class="btn btn-light">Download Manifest File</a>
</div>
</div>
</div>
<div class="content">
<div class="cc">
<h2>Dynamic Parameter Extension</h2>
<p>This extension allows you to add dynamic parameter capabilities to a Tableau dashboard.</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 Dynamic Parameter <a href="https://keshiarose.github.io/Dynamic-Parameter/DynamicParameter.trex">manifest file</a>.</p>
<h2>Using the Extension</h2>
<ol>
<li>Create an open input (All) parameter with a data type matching the field you want to use to populate it</li>
<li>Drag in a new Extension object to your dashboard</li>
<li>Find the manifest (.trex) file you downloaded above</li>
<li>Select the parameter you created above for the extension to manipulate</li>
<li>Select the data source that holds the field you want to base your parameter on (if only one data source present, the extension will auto select it)</li>
<li>Select the field you want to base your parameter on</li>
<li>Optional: If you want your parameter to only contain relevant values, check the box and select the worksheet that has the filters you want to affect the dynamic parameter</li>
<li>Click ‘Add dynamic parameter’</li>
</ol>
</div>
</div>
</body>
</html>