jsonp
[wolnelektury.git] / apps / wolnelektury_core / static / js / search.js
index 6afc4a3..0b8dd39 100644 (file)
@@ -7,16 +7,31 @@ var __bind = function (self, fn) {
     $.widget("wl.search", {
        options: {
           minLength: 0,
+         dataType: "json",
         },
 
        _create: function() {
+            console.log("dataType: " + this.options.dataType);
+            var url = this.element.data('source');
            var opts = { 
                minLength: this.options.minLength,
                select: __bind(this, this.enter),
                focus: function() { return false; },
-               source: this.element.data('source'),
+               source: function(req, cb) {
+                    $.ajax({url: url,
+                            dataType: "jsonp",
+                            type: "GET",
+                            success: function(data) {
+                                cb(data);
+                            },
+                            error: function() { cb([]); }
+
+                });
+                },
            };
-           this.element.autocomplete(opts).data("autocomplete")._renderItem = __bind(this, this.render_item);
+
+           this.element.autocomplete($.extend(opts, this.options))
+               .data("autocomplete")._renderItem = __bind(this, this.render_item);
        },
 
        enter: function(event, ui) {
@@ -32,7 +47,7 @@ var __bind = function (self, fn) {
                .append('<a href="'+item.url+'"><span class="search-hint-label">'+item.label+'</span>'+
                        '<span class="search-hint-category mono">'+item.category+'</span></a>')
                .appendTo(ul);
-       },
+       }, 
 
        destroy: function() {