This is a migrated thread and some comments may be shown as answers.

Virtialized ComboBox TextSearch Filtering does not work

1 Answer 118 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Jimmie
Top achievements
Rank 2
Jimmie asked on 07 Sep 2010, 07:05 PM
I have a RadComboBox that is bound to a collection of about 1500 items. The ComboBox is searchable with filtering.

Everything was working as expected, except it was really slow to load.

I Added the VirtualizingStackPanel and this gave me the speed required for the app and text searching is working. However, the ComboBox is no longer filtering the results.

Here is my code:

<telerik:RadComboBox Grid.Column="1"
                     IsEditable="True"
                     TextSearchMode="StartsWith"
                     telerik:TextSearch.TextPath="Description"
                     IsFilteringEnabled="True"
                     OpenDropDownOnFocus="True"
                     ItemsSource="{Binding Fields}"
                     SelectedItem="{Binding SelectedField.Field, Mode=TwoWay}">
                <telerik:RadComboBox.ItemsPanel>
                    <ItemsPanelTemplate>
                        <VirtualizingStackPanel />
                    </ItemsPanelTemplate>
                </telerik:RadComboBox.ItemsPanel>
</telerik:RadComboBox>


I'm using the latest version of the control (Q2 2010 SP1).

Any help would be greatly appreciated.

1 Answer, 1 is accepted

Sort by
0
Konstantina
Telerik team
answered on 08 Sep 2010, 07:24 AM
Hi Jimmie,

Thank you for contacting us.

Unfortunately, virtualization and filtering are not supported together. We will do our best to improve this behaviour in one of our future releases.
Sorry for the caused inconvenience.

If you have any other questions about our controls please let us know.

Sincerely yours,
Konstantina
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
ComboBox
Asked by
Jimmie
Top achievements
Rank 2
Answers by
Konstantina
Telerik team
Share this question
or