nearly working version
[redakcja.git] / redakcja / static / js / catalogue / catalogue.js
diff --git a/redakcja/static/js/catalogue/catalogue.js b/redakcja/static/js/catalogue/catalogue.js
new file mode 100755 (executable)
index 0000000..e8ef5e9
--- /dev/null
@@ -0,0 +1,29 @@
+(function($) {
+    $(function() {
+
+
+        $(function() {
+            $('.filter').change(function() {
+                document.filter[this.name].value = this.value;
+                document.filter.submit();
+            });
+
+            $('.check-filter').change(function() {
+                document.filter[this.name].value = this.checked ? '1' : '';
+                document.filter.submit();
+            });
+
+            $('.text-filter').each(function() {
+                var inp = this;
+                $(inp).parent().submit(function() {
+                    document.filter[inp.name].value = inp.value;
+                    document.filter.submit();
+                    return false;
+                });
+            });
+        });
+
+
+    });
+})(jQuery)
+