Use a dynamic lookup function in a Collection
masterIf your data objects have multiple attributes you want to search against, you can provide a function to the lookup key instead of a string. This function receives the object and the current mention text.
{
lookup: function (person, mentionText) {
return person.name + person.email;
}
}