This question is locked. New answers and comments are not allowed.
Hello,
I've a problem that the grouping disappears after the data are loaded and the grid is filled. During initialization I can see the grouping column in the group panel but when the grid is filled the grouping is gone.
Below you can see the code I've used. What I want to have is that the grid is automatically grouped by CompanyName.
Thanks for your support
Uwe
I've a problem that the grouping disappears after the data are loaded and the grid is filled. During initialization I can see the grouping column in the group panel but when the grid is filled the grouping is gone.
Below you can see the code I've used. What I want to have is that the grid is automatically grouped by CompanyName.
| <Grid x:Name="LayoutRoot"> |
| <dds:DomainDataSource x:Name="ddsNwndCust" QueryName="GetCustomers" |
| AutoLoad="True"> |
| <dds:DomainDataSource.DomainContext> |
| <domain:NwndCustomerDomainContext/> |
| </dds:DomainDataSource.DomainContext> |
| </dds:DomainDataSource> |
| <telGrid:RadGridView ItemsSource="{Binding Data, ElementName=ddsNwndCust}"> |
| <telGrid:RadGridView.GroupDescriptors> |
| <telData:GroupDescriptor Member="CompanyName" DisplayContent="Company"> |
| </telData:GroupDescriptor> |
| </telGrid:RadGridView.GroupDescriptors> |
| </telGrid:RadGridView> |
| </Grid> |
Thanks for your support
Uwe