X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d316a52151685a1b7c295baa12b73a73eabe5657..2e7619a7bc917eb1a5514af07ce4258e461f74ec:/apps/wolnelektury_core/static/js/search.js diff --git a/apps/wolnelektury_core/static/js/search.js b/apps/wolnelektury_core/static/js/search.js index 6afc4a399..0b8dd394a 100644 --- a/apps/wolnelektury_core/static/js/search.js +++ b/apps/wolnelektury_core/static/js/search.js @@ -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(''+item.label+''+ ''+item.category+'') .appendTo(ul); - }, + }, destroy: function() {