Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
600
How to get any row when i use ultraCombo with multi columns
posted

ultraComba with columns

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,

  • 469350
    Offline posted

    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.