我在网格视图中显示金额列的总值,当我对网格视图进行分组时,它会显示每个组的总数,但不显示所有组的总和。我该如何显示它?我在基础设施中使用超网格视图。
问问题
2035 次
1 回答
3
要显示所有组的摘要,您需要在具有 GroupByRowsFooter 及其位置的UltraGridOverride上设置 SummaryDisplayArea。帮助中的“显示所有 GroupBy 行的摘要页脚”主题中有一个示例。以下是帮助主题中的 C# 代码:
private void customersUltraGrid_InitializeLayout(object sender,
Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
{
this.customersUltraGrid.DisplayLayout.Override.AllowRowSummaries =
AllowRowSummaries.True;
this.customersUltraGrid.DisplayLayout.Override.SummaryDisplayArea =
SummaryDisplayAreas.GroupByRowsFooter |
SummaryDisplayAreas.TopFixed;
}
于 2013-08-07T17:54:15.573 回答