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

GridView Summaries

7 Answers 325 Views
GridView
This is a migrated thread and some comments may be shown as answers.
K
Top achievements
Rank 1
K asked on 09 Oct 2008, 07:13 PM
I have a gridview that has 10 columns... I would like a row that contains the summary(totals) for the columns.....is this possible? please help..

7 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 10 Oct 2008, 04:36 AM
Hi K,

Set the Aggregate property for the Grid columns and also set the ShowFooter property to true so that the aggregated value is displayed in the footer of the column.

Thanks
Shinu


0
K
Top achievements
Rank 1
answered on 10 Oct 2008, 02:26 PM
Hi,

I found that the following did what i wanted.

GridViewSummaryRowItem

 

 total = new GridViewSummaryRowItem();

 

total.Add(

new GridViewSummaryItem("Total", "Sum: {0}", GridAggregateFunction.Sum));

 

 

this.ItemGrid.MasterGridViewTemplate.SummaryRowsTop.Add(total);

However, I would like to pin this summary row.  Is this is possible?

Cheers

 

0
Jack
Telerik team
answered on 13 Oct 2008, 03:53 PM
Hi K,

I am glad to hear that you have found the solution to this issue. Using the GridViewSummaryItem is the right way.

Actually, RadGridView supports pinned rows, but not for summery rows. You should set the IsPinned property to true. We will consider implementing this functionality in one of our upcoming releases.

Should you have any other questions, do not hesitate to contact us.
 

Sincerely yours,
Jack
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Marcello
Top achievements
Rank 1
answered on 11 Dec 2009, 05:32 PM
Hi, 
It seems that pin summary row are not implemented in latest version (2009 Q3), I am right? 
If not implemented we will be very interested in this feature

Thanks
Marcello
0
Jack
Telerik team
answered on 14 Dec 2009, 08:57 AM
Hello Marcello,

Thank you for your feedback. Yes, we have this feature in mind and we will implement this functionality in our next major release -- Q1 2009. Should you have any other questions, don't hesitate to ask.

Regards,
Jack
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
kulgan james
Top achievements
Rank 1
answered on 11 May 2010, 03:00 AM
Q1 2010 I believe you mean. Is this functionality available now?
0
Jack
Telerik team
answered on 13 May 2010, 05:58 PM
Hello kulgan james,

Pinned summary rows are not available in Q1 2010. In this release we focused our efforts mainly on our new Visual Style Builder. However, our upcoming major release Q2 2010 will contain many new features. Please take a look at this blog article for more information. We will consider introducing an API that allows pinned summary rows in this release. 

Kind regards,
Jack
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
K
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
K
Top achievements
Rank 1
Jack
Telerik team
Marcello
Top achievements
Rank 1
kulgan james
Top achievements
Rank 1
Share this question
or