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 Reply Children
No Data