Skip to content

Commit a82c33f

Browse files
committed
ShowNoSuggestionNotice can be a function. Fix of noSuggestionNotice.
1 parent 08c284c commit a82c33f

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The standard jquery.autocomplete.js file is around 2.7KB when minified via Closu
4545
* `autoSelectFirst`: if set to `true`, first item will be selected when showing suggestions. Default value `false`.
4646
* `appendTo`: container where suggestions will be appended. Default value `document.body`. Can be jQuery object, selector or html element. Make sure to set `position: absolute` or `position: relative` for that element.
4747
* `dataType`: type of data returned from server. Either 'text' (default) or 'jsonp', which will cause the autocomplete to use jsonp. You may return a json object in your callback when using jsonp.
48-
* `showNoSuggestionNotice`: Default `false`. When no matching results, display a notification label.
48+
* `showNoSuggestionNotice`: Default `false`. Boolean or `function (suggestions) {}`. When set `true` and no matching results, display a notification label. When function given, it is called on every suggestion display and if `true` returned, notification is displayed.
4949
* `noSuggestionNotice`: Default `No results`. Text or htmlString or Element or jQuery object for no matching results label.
5050
* `forceFixPosition`: Default: `false`. Suggestions are automatically positioned when their container is appended to body (look at `appendTo` option), in other cases suggestions are rendered but no positioning is applied.
5151
Set this option to force auto positioning in other cases.

src/jquery.autocomplete.js

+20-5
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@
147147
suggestionSelector = '.' + that.classes.suggestion,
148148
selected = that.classes.selected,
149149
options = that.options,
150+
noSuggestionNotice = this.options.noSuggestionNotice,
150151
container;
151152

152153
// Remove autocomplete attribute to prevent native suggestions:
@@ -159,9 +160,12 @@
159160
}
160161
};
161162

163+
// if notice is not string, it should be deep-copied, so every autocomplete instance has its own copy
164+
if(typeof noSuggestionNotice !== 'string')
165+
noSuggestionNotice = $(noSuggestionNotice).clone(true);
162166
// html() deals with many types: htmlString or Element or Array or jQuery
163167
that.noSuggestionsContainer = $('<div class="autocomplete-no-suggestion"></div>')
164-
.html(this.options.noSuggestionNotice).get(0);
168+
.html(noSuggestionNotice).get(0);
165169

166170
that.suggestionsContainer = Autocomplete.utils.createNode(options.containerClass);
167171

@@ -208,7 +212,6 @@
208212

209213
onFocus: function () {
210214
var that = this;
211-
that.fixPosition();
212215
if (that.options.minChars <= that.el.val().length) {
213216
that.onValueChange();
214217
}
@@ -634,11 +637,15 @@
634637

635638
suggest: function () {
636639
if (this.suggestions.length === 0) {
637-
if (this.options.showNoSuggestionNotice) {
640+
641+
var showNoSuggestionNotice = this.options.showNoSuggestionNotice;
642+
if(typeof this.options.showNoSuggestionNotice === 'function')
643+
showNoSuggestionNotice = this.options.showNoSuggestionNotice(this.suggestions);
644+
645+
if(showNoSuggestionNotice)
638646
this.noSuggestions();
639-
} else {
647+
else
640648
this.hide();
641-
}
642649
return;
643650
}
644651

@@ -686,9 +693,17 @@
686693

687694
this.adjustContainerWidth();
688695

696+
// Detach noSuggestions not to have it removed when filling container with new suggestions
689697
noSuggestionsContainer.detach();
690698
container.html(html);
691699

700+
// If showNoSuggestionNotice is a function, call it to see
701+
// if noSuggestionNotice should be added to theses suggestions
702+
if(typeof this.options.showNoSuggestionNotice === 'function'
703+
&& this.options.showNoSuggestionNotice(that.suggestions)) {
704+
container.append(noSuggestionsContainer);
705+
}
706+
692707
if ($.isFunction(beforeRender)) {
693708
beforeRender.call(that.element, container);
694709
}

0 commit comments

Comments
 (0)