如何在给出其中一个参数时(在与搜索字段不同的字段中)过滤列表。例如,用户指定group =“Test”并开始在#ContactPerson字段中搜索。我只想要“group”:“Test”出现的记录。
("#ContactPerson").autocomplete({
source: [{"value":"XYZ","name":"ZJL","group":"Test"},...]
...
这是我到目前为止所尝试过的,但它不起作用:http://jsfiddle.net/71puvk59/
答案 0 :(得分:1)
根据this answer,您可以覆盖搜索功能并应用所有过滤器。
在你的情况下:
var source = [
{"value": "JL", "name": "JL", "group": "Test"},
{"value": "MV", "name": "MV", "group": "Family"}
];
$('#ContactPerson').autocomplete({
source: source,
search: function (oEvent, oUi) {
// get current input value
var sValue = $(oEvent.target).val();
//groupValue
var groupValue = $("#group").val();
// init new search array
var aSearch = [];
// for each element in the source array ...
$(source).each(function (iIndex, sElement) {
var groupFilterMatch = ((groupValue && sElement.group.indexOf(groupValue) != -1) || !groupValue);
var nameFilterMatch = sElement.name.indexOf(sValue) != -1;
// ... APPLY YOUR FILTERS HERE
//Example: filter group, if it is defined, and filter name
if (groupFilterMatch && nameFilterMatch) {
// add element
aSearch.push(sElement);
}
});
// change search array
$(this).autocomplete('option', 'source', aSearch);
}
});