How can I place the 'Group' name among each footer total?
For example, I have a group defined: GridGroupByField FieldName="GroupRegion". The group will be text such as "East Coast", "West Coast", etc.
I want to use that group value in each Footer total. i.e. "East Coast Total = 99", West Coast Total = 101".
I thought maybe something I could add via code in the ItemDataBound event?:
If (TypeOf e.Item Is GridFooterItem) Then
Dim footerItem As GridFooterItem = CType(e.Item, GridFooterItem)
footerItem("SumOfRegion").Text = ??
End If
But, I don't know how to get the current group value / name the footer total is working with...?
Thanks.
For example, I have a group defined: GridGroupByField FieldName="GroupRegion". The group will be text such as "East Coast", "West Coast", etc.
I want to use that group value in each Footer total. i.e. "East Coast Total = 99", West Coast Total = 101".
I thought maybe something I could add via code in the ItemDataBound event?:
If (TypeOf e.Item Is GridFooterItem) Then
Dim footerItem As GridFooterItem = CType(e.Item, GridFooterItem)
footerItem("SumOfRegion").Text = ??
End If
But, I don't know how to get the current group value / name the footer total is working with...?
Thanks.