-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
index.html
186 lines (174 loc) · 5.43 KB
/
index.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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-063933E3C2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-063933E3C2");
</script>
<title>Structured-Filter Demo</title>
<link
rel="canonical"
href="https://evoluteur.github.io/structured-filter/"
/>
<meta charset="utf-8" />
<meta property="og:title" content="Structured-Filter" />
<meta
name="description"
content="Structured filter widget for jQuery UI."
/>
<meta
name="keywords"
content="jQuery, UI, widget, component, plugin, metadata, structured, filter, query, builder, editor, faceted, search, form"
/>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="icon" type="image/png" href="favicon.png" />
<meta
property="og:title"
content="Structured-Filter widget for jQuery UI."
/>
<meta
property="og:url"
content="https://evoluteur.github.io/structured-filter/"
/>
<meta
property="og:image"
content="https://raw.github.com/evoluteur/structured-filter/master/screenshots/structured-filter.gif"
/>
<link
id="jquiCSS"
rel="stylesheet"
href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.13.2/themes/base/jquery-ui.css"
type="text/css"
media="all"
/>
<link rel="stylesheet" href="css/demo.css" type="text/css" media="all" />
<link
rel="stylesheet"
href="css/structured-filter.css"
type="text/css"
media="all"
/>
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"
type="text/javascript"
></script>
<script
src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js"
type="text/javascript"
></script>
<script src="js/structured-filter.min.js" type="text/javascript"></script>
<script src="js/demo.js" type="text/javascript"></script>
</head>
<body>
<section>
<header>
<h1>Structured-Filter <span>v2.0.5</span></h1>
<div id="github">
<iframe
src="https://ghbtns.com/github-btn.html?user=evoluteur&repo=structured-filter&type=star&count=true&size=small"
frameborder="0"
scrolling="0"
width="100px"
height="30px"
></iframe>
</div>
</header>
<div>
<p>
Structured-Filter is a Web UI component for building structured search
queries. It is a full jQuery UI widget, supporting various
configurations and themes.
</p>
<p>
With it you can build structured search conditions like Firstname
starts with 'A' and Birthday after 1/1/1990 and State in (CA, NY,
FL)...
</p>
<p class="demo-links">
Themes: <a href="#" class="css sel">Base</a> -
<a href="#" class="css">UI Lightness</a> -
<a href="#" class="css">UI Darkness</a> -
<a href="#" class="css">Redmond</a> -
<a href="#" class="css">Start</a> -
<a href="#" class="css">Le Frog</a> -
<a href="#" class="css">Swanky Purse</a>
</p>
<div id="evol"></div>
<p class="demo-links">
Methods: <a href="#" id="addCondition">Add Condition</a> -
<a href="#" id="delFilter">Remove First Condition</a> -
<a href="#" id="length">Number of Conditions</a> -
<a href="#" id="clear">Clear</a>
</p>
<p class="demo-links" id="linksValues">
Formats: <a href="#" data-id="json" class="sel">JSON</a> -
<a href="#" data-id="text">Text</a> -
<a href="#" data-id="url">URL</a>
</p>
<p>
<textarea id="myFilter" class="demoValue" rows="16"></textarea>
</p>
<p>
Structured-Filter is Open Source with
<a
href="http://github.com/evoluteur/structured-filter/raw/master/LICENSE.md"
target="_blank"
rel="noopener"
>MIT license</a
>.
</p>
<p>
<br />Code and documentation are available at
<a
href="https://github.com/evoluteur/structured-filter"
target="_blank"
rel="noopener"
>GitHub</a
>
or
<a
href="https://www.npmjs.com/package/structured-filter"
target="_blank"
rel="noopener"
>NPM</a
>
(<a
href="https://npm-stat.com/charts.html?package=structured-filter&from=2016-01-01&to=2023-12-31"
>18,000 downloads</a
>
in 2023).
</p>
<br />
<code>npm install structured-filter</code>
<br />
<br />
<br />
<div>
Check out my other jQuery UI widget
<a href="https://evoluteur.github.io/colorpicker">ColorPicker</a
>.<br /><br />
</div>
<span class="madeInCA">
<div>
Made in California with
<div class="heart">♥</div>
<br />
<br />
</div>
</span>
<footer>
© 2024
<a href="https://evoluteur.github.io/">Olivier Giulieri</a>
</footer>
</div>
</section>
</body>
</html>