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.
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.
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.