I have exposed here such parametres in ultraGrid:ultraGrid.DisplayLayout.Bands[0].Columns[0].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownValidate;
ultraGrid.DisplayLayout.Bands[0].Columns[0].AutoCompleteMode = Infragistics.Win.AutoCompleteMode.Suggest;Mode AutoCompleteMode.Suggest offers variants only on the first symbols. How to me to realise an autofilling mode on content of symbols?
Hello DachNik,
The WinGrid AutoCompleteMode does support special characters, but I am not too sure what you mean by symbols.
Could you please be more specific what type of symbols you are populating the grid with?
Sincerely,Mike D.Developer Support EngineerInfragistics, Inc.
I mean text.
I believe the setting you are looking for is ultraGrid.DisplayLayout.Bands[0].Columns[0].AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;. This setting combines the 'Suggest' and 'Append' settings.
The following link to the Infragistics NetAdvantage Online Help for WinClient contains more information on the AutoCompleteMode Enumeration when using a DropDown Editor in the WinGrid:<http://help.infragistics.com/Help/NetAdvantage/WinForms/2009.1/CLR2.0/html/Infragistics2.Win.v9.1~Infragistics.Win.AutoCompleteMode.html>
Please let me know if this information is helpful.Sincerely,Mike D.Developer Support EngineerInfragistics, Inc.