I have an ultracomboeditor, when the user enter 1st character the list should display , when the user enters 2nd character the list with 1st+ 2nd charcter should display
for e.g. if "bu" is entered, all the items starting with bu should appear
this.ultraComboEditor1.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.Suggest;
or
this.ultraComboEditor1.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
I have set the ultracomboeditor as follows:
this.cmbPipeline.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;this.cmbPipeline.SortStyle = Infragistics.Win.ValueListSortStyle.AscendingByValue;this.cmbPipeline.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
But when i enter "b" the dropdown shows the items starting with b and when i try to enter "bu" it shows the items starting with "u" and not with "bu"
please suggest