I have a RadGrid instance that has grouping enabled and contains several numeric columns. I would like to display totals for the numeric columns but would prefer to show the totals in the header of the groups as opposed to the footer. I think it's more intuitive and easier to read if the totals were displayed in the group headers. I know I can customize the look and feel of the group headers by using the GroupHeaderTemplate. The issue I am having now is that I don't know how to line up each total in my GroupHeaderTemplate with the corresponding column in the grid itself. Is this possible? I know there's a way to do this with the GroupFooterTemplate (i.e. adding TD elements to the GroupFooterTemplate and then adding code to the pre_render event to set the ColumnSpan of each template cell to 1), but I'm not sure how to accomplish the same thing in the group header. Thanks in advance for your assistance with this matter.