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

Virtualization loads all items for each group

1 Answer 46 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Markus
Top achievements
Rank 1
Markus asked on 28 Aug 2014, 11:07 PM
I bound a RadGridView to a VirtualQueryableCollectionView backed by SQL using System.Data.Linq.ITable.

At first Virtualization works nicely as I see that the LoadSize is submitted to the SQL provider (tracing SQL queries).
Once I add grouping (dragging a column into the grouping panel) all rows for each group are loaded. 

        <telerik:RadGridView x:Name="Table" ItemsSource="{Binding Data}" AutoGenerateColumns="False" IsReadOnly="True" 
                             Height="500" Width="500"
                             GroupRenderMode="Flat"
                             CanUserInsertRows="False" CanUserDeleteRows="False"
                             EnableRowVirtualization="True" EnableColumnVirtualization="True"
                             ScrollMode="Deferred"/>

Is UI virtualization supported in a group scenario? Am I missing some settings?

1 Answer, 1 is accepted

Sort by
0
Dimitrina
Telerik team
answered on 29 Aug 2014, 01:23 PM
Hello,

The default grouping is the one that occurs as the user drags a column header and drops it into the GroupPanel. Then, we internally generate and execute a LINQ query appending a GroupBy clause to the source collection.

WCF RIA Services do not support true server-side grouping. They translate it to sorting instead. The grouping is done solely on the client by RadGridView and that why all the items need to be downloaded.


Regards,
Didie
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
Tags
GridView
Asked by
Markus
Top achievements
Rank 1
Answers by
Dimitrina
Telerik team
Share this question
or