Hi there
We are using v10.3.20.103.1000 of the UltraWinGrid.
I have a column in the grid that obtains data from a ValueList, a list of currencies.
The column's style is DropDownList because I only want the user to be able to select from currencies in the list.
Currently if user enters say 'U' in an attempt to find 'USD' then nothing happens.
Is it possible to get AutoComplete to work for this column when used like this?
Am I missing something basic?
Regards
geoffhop
Hi geoffhop,
Typing the letter "U" should select the first item on the list that starts with the letter "U" by default - even with DropDownList style. Assuming the cell has focus and is editable, anyway.
If that's not working, then I can only think of two reasons why:
1) You have set the AutoCompleteMode on the column to None.
2) This is a bug in the version you are using.
How to get the latest service release - Infragistics Community
Hi Mike
Thats odd because using the Value List sample for both 2010.3 and 2011.1 as provided by Infragistics if in the private void chkUseValueLists_CheckedChanged(object , System.EventArgs) event handler I set the SpaceLineID column to the following I get no AutoComplete
this.gridValueLists.DisplayLayout.Bands[0].Columns["SpacelineID"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList; this.gridValueLists.DisplayLayout.Bands[0].Columns["SpacelineID"].AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;