the datasource
COL1 COL2 COL3
A X11 one
B Y22 two
C Z33 three
I use a combo that will display multi columns.
I tried to select the two row when i input " two",but not success.
Is there a way to do it with UltraCombo or UltraDropDown ?
,i hope i can select the row,when i input any column's value
Thanks ahead,
Hi,
There is no built-in functionality to allow you to type in the text from any column. The UltraCombo will only match up the DisplayMember column, and it may fall back to the ValueMember column in some cases - but that is not the intended use of the control and I would not recommend relying on that behavior.
You could handle the ItemNotInList event and search the list yourself if you want to match on other columns.