Posted 10 Dec 2012 Link to this post
Posted 13 Dec 2012 Link to this post
You should pin the SummaryRow to achieve the desired scenario. You can do that by using the following code snippet:
this
.radGridView1.SummaryRowsBottom.Add(
new
GridViewSummaryRowItem(
GridViewSummaryItem[]{
GridViewSummaryItem(
"ID"
,
"{0}"
, GridAggregateFunction.Sum)}));
.radGridView1.MasterTemplate.ShowTotals =
true
;
.radGridView1.MasterView.SummaryRows[0].PinPosition = PinnedRowPosition.Bottom;
Posted 21 Mar 2013 Link to this post