We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1f02195 + 4cbe8a3 commit 1582e23Copy full SHA for 1582e23
CHANGELOG
@@ -5,8 +5,8 @@ Changelog
5
1.6 (unreleased)
6
----------------
7
8
-- Nothing changed yet.
9
-
+- Filter fields having the HTML attribute "data-auto-submit" set to "no" do not
+ trigger a page reload when modified.
10
11
1.5 (2016-09-23)
12
django_genericfilters/templates/genericfilters/filter_list.html
@@ -30,6 +30,6 @@
30
31
<script type="text/javascript">
32
$(document).ready(function () {
33
- $('#search_form select').change(search_submit);
+ $('#search_form select:not("[data-auto-submit=\'no\']")').change(search_submit);
34
});
35
</script>
0 commit comments