I am using webdatagrid i have add a summary row and calculating the sum of a column using summary type sum. Now the label text is Sum i want to change the text of sum to another text.
How it is possible?????????
It is urgent please.
Regards
Akhtar Abbas
Hello Akhtar,
When specifying the ColumnSummaries you can set the property CustomSummaryName on the Summary object to change the label. This would look something like the following:
<Behaviors> <ig:SummaryRow> <ColumnSummaries> <ig:ColumnSummaryInfo ColumnKey="UnitPrice"> <Summaries> <ig:Summary SummaryType="Sum" CustomSummaryName="MySum" /> </Summaries> </ig:ColumnSummaryInfo> </ColumnSummaries> </ig:SummaryRow></Behaviors>