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
905
search in UltraComboEditor
posted

how to serach in UltraComboEditor by typing any character of items text

for example:

items of combo is:

پرسنل

سایر

when I do type س

combo find پرسنل

and

Parents
  • 8607
    Offline posted

    Hello fatemeh,

    Filter Options to Filter Suggested Values

    As described in the link above, you can set the AutoSuggestFilterMode to Contains.  By doing so, the combo editor will display results where the item contains the entered character.

    this.ultraComboEditor1.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.Suggest;
    this.ultraComboEditor1.AutoSuggestFilterMode = Infragistics.Win.AutoSuggestFilterMode.Contains; 


    Elizabeth Albert
    Localization Engineer 

Reply Children