Kendo Combobox - Advanced Filtering

230 Views Asked by At

Is it possible to filter on other properties in the datasource attached to a combobox?

For example, I have combobox with a list of customers, I want to be able to search on the customer name, First Name, Last Name and email.

1

There are 1 best solutions below

0
On

It is posible if you concatenate the fields you want to search in one.

ie: concatField = FirstName + " " + LastName + " " + email.

You could show just the name if you want, but the textfield should be concatField.