Hello Sir,
I am trying to add footer into telerik radGridView in my C# winform project.
Because I need a total value in gridview footer which to be displayed in exported excelsheet.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bineesh ViswanathPosted Aug 6, 2017, 6:14 AM
GridViewSummaryItem summerItemClaimAmt = new GridViewSummaryItem("dgvtxtClaimAmt", " Total Claim Amt : {0}", GridAggregateFunction.Sum);
GridViewSummaryItem summeItemBalAmt = new GridViewSummaryItem("dgvtxtBalAmount", "Total Bal Amt : {0}", GridAggregateFunction.Sum);
GridViewSummaryRowItem rowItem = new GridViewSummaryRowItem(new GridViewSummaryItem[] { summerItemClaimAmt, summeItemBalAmt });
dgvBankAllocationReport.SummaryRowsBottom.Add(rowItem);
Manikandan MurugesanPosted Jul 3, 2017, 8:45 AM