1
0
mirror of synced 2024-11-22 21:16:10 +03:00

Merge pull request #301 from bhoop/master

Add a "Searching" label state for AJAX data
This commit is contained in:
Igor Vaynberg 2012-08-06 20:26:00 -07:00
commit 02326a58ab

View File

@ -1081,6 +1081,9 @@
render("<li class='select2-no-results'>" + opts.formatInputTooShort(search.val(), opts.minimumInputLength) + "</li>");
return;
}
else {
render("<li class='select2-searching'>" + opts.formatSearching() + "</li>");
}
this.resultsPage = 1;
opts.query({
@ -2193,6 +2196,7 @@
formatInputTooShort: function (input, min) { return "Please enter " + (min - input.length) + " more characters"; },
formatSelectionTooBig: function (limit) { return "You can only select " + limit + " items"; },
formatLoadMore: function (pageNumber) { return "Loading more results..."; },
formatSearch: function () { return "Searching..."; },
minimumResultsForSearch: 0,
minimumInputLength: 0,
maximumSelectionSize: 0,