New answers tagged disable-link
1
You could try filtering the autcomplete results with data from your VM list.
response(ko.utils.arrayFilter(data, function(item) {
return !ko.utils.arrayFirst(vm.Lists, function(listItem) {
return listItem.id === item.id;
}
}
Something like that would filter your result list by excluding any item that already existed in the VM list, ...
Top 50 recent answers are included
