This question is locked. New answers and comments are not allowed.
Hi,
I use RadGridview, RIA Service and RadDataPager. I want to disable paging, if I group the grid. So I did the following:
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
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;
…
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