},
_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: function(req, cb) {
- $.ajax({url: url,
- dataType: "jsonp",
- type: "GET",
- success: function(data) {
- cb(data);
- },
- error: function() { cb([]); }
-
- });
- },
+ source: this.element.data('source'),
};
this.element.autocomplete($.extend(opts, this.options))
scriptSearch.onload = function() {
var s = $('#id_qq');
- s.search({source: s.attr('data-source'), dataType: "jsonp"});
+ var url = s.attr('data-source');
+ s.search({source:
+ function(req, cb) {
+ $.ajax({url: url,
+ dataType: "jsonp",
+ data: { term: req.term },
+ type: "GET",
+ success: function(data) { cb(data); },
+ error: function() { cb([]); }
+ });
+ },
+ dataType: "jsonp"});
}
scriptSearch.onreadystatechange = function() { if (scriptSearch.readyState == 'complete') { scriptSearch.onload(); } };