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

[Solved] Grouping doesn't work correctly

1 Answer 93 Views
GridView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Daniel Knoll
Top achievements
Rank 1
Daniel Knoll asked on 19 Aug 2010, 08:24 AM
Hi,

I use RadGridview, RIA Service and RadDataPager. I want to disable paging, if I group the grid. So I did the following:
private void tDataGrid_Grouping(object sender, GridViewGroupingEventArgs e) {
 if (e.Action == CollectionChangeAction.Add)
 {
      this.tDomainDataSource.PageSize = this.t.DataGrid.Items.ItemCount+100;
           …




I set the pageSize for instance from 200 to 4000.
 If I drag and drop columns to the group header of my grid, strange things happen. For example the pageSize is 200 and my grid has 20 sides. If I group this data, only the first side is grouped. That means I see only 200 entries grouped. Sometimes the grouped result is displayed twice and sometimes all the data is grouped???
Thanks

1 Answer, 1 is accepted

Sort by
0
Veselin Vasilev
Telerik team
answered on 20 Aug 2010, 07:44 AM
Hello Markus Unterauer,


Can you please check this blog post:
Server-side paging, sorting and filtering for your Silverlight DataGrid

I believe it will help you achieve your goal.

Regards,
Veselin Vasilev
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
GridView
Asked by
Daniel Knoll
Top achievements
Rank 1
Answers by
Veselin Vasilev
Telerik team
Share this question
or