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
410
Same control, different behaviour?
posted

Hi,

In my WinForms project I'm using the UltraComboEditor multiple times.

On all of them the properties are the same, and still they behave differently:

The UltraComboEditor placed on the form behaves nicely with Suggest as internetexplorer: If I type a letter it automatically drops down and shows all items that contain my entered text and highlights these!

The UltraComboEditor with all the same properties, but placed in an UltraGrid as columneditor. Does not autosuggest anything. When I type text it does not even automatically dropdown as the first one...

I also tried using the Valuelist of the column itselve with Suggestmode; doesn't give the wanted behaviour either :-(

Se here the difference:

UltraComboEditor in a grid
 

What Im a doing wrong?

Parents
  • 29065
    Verified Answer
    Offline posted

    Hello oskamf,

    Thank you for contacting Infragistics.

    The grid is in fact is overriding the same property. You must set the column's AutoCompleteMode to "Suggest". This actually helps prevent conflicts with having the same control on the form outside of the grid. Because users may want different behavior in the grid or not. Please let me know if you have any additional questions.


    this.ultraGrid1.DisplayLayout.Bands[0].Columns["DropDown Column"].AutoCompleteMode = Infragistics.Win.AutoCompleteMode.Suggest;

     

Reply Children