mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2024-11-22 12:55:12 +00:00
[FEATURE] Allow to override formatGroup callback via options
This commit is contained in:
parent
2b7e259b74
commit
4d736f3cf4
@ -645,7 +645,7 @@
|
||||
beforeRender = options.beforeRender,
|
||||
html = '',
|
||||
category,
|
||||
formatGroup = function (suggestion, index) {
|
||||
formatGroup = typeof options.formatGroup == 'function' ? options.formatGroup : function (suggestion, index) {
|
||||
var currentCategory = suggestion.data[groupBy];
|
||||
|
||||
if (category === currentCategory){
|
||||
|
Loading…
Reference in New Issue
Block a user