Unplanned
Last Updated: 07 Apr 2021 13:59 by ADMIN
Elias
Created on: 07 Apr 2021 13:47
Category: MultiColumnCombo
Type: Bug Report
0
RadMultiColumnComboBox: selection issues when AutoCompleteMode.Suggest and filtering data with similar words

Using AutoCompleteMode.SuggestAppend caused other issues and I changed it to Suggest.

In the example program I provided if I type in "meadows "  meadows and a space I should get the following Suggested List.

SUGGESTED LIST

Meadows Green

However I get " Meadows" selected with a space at the front of the word.

Sample program that illustrates the issue can be downloaded from here: https://www.dropbox.com/s/8qxhmxai0y4w7qg/FilterMultiColumn.zip?dl=0 

1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 07 Apr 2021 13:59

Hello,

Currently, you should set the AutoFilter property to true instead of setting the AutoCompleteMode property.

this.radMultiColumnComboBoxSuburb1.AutoFilter = true;
radMultiColumnComboBoxSuburb1.DisplayMember = "Suburb";
FilterDescriptor filter = new FilterDescriptor();
filter.PropertyName = this.radMultiColumnComboBoxSuburb1.DisplayMember;
filter.Operator = FilterOperator.Contains;
filter.Value = string.Empty;
filter.IsFilterEditor = true;
radMultiColumnComboBoxSuburb1.EditorControl.FilterDescriptors.Add(filter);
// radMultiColumnComboBoxSuburb1.MultiColumnComboBoxElement.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.None;

If you have other questions do not hesitate to contact us.

Regards,
Nadya
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.