A customer recently asked me how to get autocomplete functionality using the TextEditor. Microsoft's TextBox has this feature, so the customer was understandably confused as to why the Infragistics TextEditor didn't support it.
The reason that TextEditors don't have this functionality is because you can achieve exactly the same behavior using a ComboEditor. Simply bind the ComboEditor to your data source normally, set up the autocomplete mode, and hide the drop down button.
ultraComboEditor1.DataSource = ultraDataSource1;ultraComboEditor1.DataMember = "Band 0";ultraComboEditor1.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;ultraComboEditor1.DropDownButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.Never;
Mike Bowshewicz said:ultraComboEditor1.DropDownButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.Never;
how to hide the drop down button