Hello!
I use a UltraGridCell with a ValueList and this Cell has AutoCompleteMode on Append.Now here my Problem: When i write a Number in the Cell i see the AutoCompleted Row in the last Row of my DropDownList - how can i see them in the first row of my DropDownList?
Hi,
I don't think there is any way to do this. The combo is designed to simply scroll the row into view. It doesn't have any logic to position that row to the top. And, of course, in some cases, scrolling the row to the top would not even be possible, since there might not be enough rows below it.
You might be able to use the Combo's KeyUp event and try to adjust the scroll position yourself. But I don't know if that will work. The combo might scroll after you do.
To scroll a row into view, you use the combo.ActiveRowScrollRegion.ScrollRowIntoView method. And there's an overload of this method that takes a boolean so you can specify you want the row scrolled to the top, I think.