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

Server side filtering with VirtualQueryableCollectionView

1 Answer 75 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Wenrong
Top achievements
Rank 1
Wenrong asked on 05 Dec 2012, 02:03 AM
I got VirtualQueryableCollectionView working with RadComboBox when VirtualizingStackPanel is used.

However, when filtering is enabled, the ComboBox would load all the items (batched in LoadSize) from the VirtualQueryableCollectionView before displaying the dropdown. Am I missing something here?

The combobox Xaml:
<telerik:RadComboBox ItemsSource="{Binding Items}"
                     SelectedItem="{Binding SelectedItem}"
                     DisplayMemberPath="Name"
                     IsFilteringEnabled="True"
                     TextSearchMode="Contains"
                     ClearSelectionButtonVisibility="Visible"
                     ClearSelectionButtonContent="Remove">
    <telerik:RadComboBox.ItemsPanel>
        <ItemsPanelTemplate>
            <VirtualizingStackPanel/>
        </ItemsPanelTemplate>
    </telerik:RadComboBox.ItemsPanel>
</telerik:RadComboBox>

1 Answer, 1 is accepted

Sort by
0
Vladi
Telerik team
answered on 07 Dec 2012, 12:38 PM
Hi Wenrong,

Unfortunately virtualization with filtering is not supported in the current version of RadComboBox control.

Regards,
Vladi
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

Tags
ComboBox
Asked by
Wenrong
Top achievements
Rank 1
Answers by
Vladi
Telerik team
Share this question
or