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
45
UltraCombo AutoComplete help
posted

I am trying to use the AutoComplete functionality of an UltraCombo to match against the text typed using AutoSuggestFilterMode.Contains and AutoCompleteMode.SuggestAppend.

What I want to happen is, when the user is typing and the filtered dropdown list contains only one row to match against, set the row to the selectedrow of the UltraCombo. 

I tried checking the count of the FilteredInNonGroupByRows to make sure it is 1, then setting the SelectedRow to that row using Rows.GetFilteredInNonGroupByRows(0).

This works for text typed that is contained within the string of the associated row (i.e. "ai" gives me "Claim" and it selects "Claim") but not for text typed that is the prefix in the string of the associated row (i.e. "cl" gives me "Claim" but it does NOT select "Claim")

Is there a way to do this?

Parents
  • 71886
    Offline posted

    Hello Joshua,

    When are you doing this? At the end I got confused and do not know if you are really using the filtering functionality our just the filter and autocomplete modes.

    Could you please provide a small sample project if possible with your scenario, as I feel that I did not get you right on this matter.

Reply Children