This question is locked. New answers and comments are not allowed.
Hi,
I'm trying to get the RadComboBox to filter its items on several properties.
Lets say I have a collection of cities with ZipCode and Name like this class below:
Now, if the user puts in "AL" into the ComboBox, I want the ComboBox to show the user all items that has a ZipCode that begins with AL and also all items that has a Name that begins with AL.
How do I achieve this with the RadComboBox?
I'm trying to get the RadComboBox to filter its items on several properties.
Lets say I have a collection of cities with ZipCode and Name like this class below:
public
class
City
{
public
string
ZipCode {
get
;
set
; }
public
string
Name {
get
;
set
; }
}
Now, if the user puts in "AL" into the ComboBox, I want the ComboBox to show the user all items that has a ZipCode that begins with AL and also all items that has a Name that begins with AL.
How do I achieve this with the RadComboBox?