In addition to the code below, this will add a total to GROUP rows
<MasterTableView DataKeyNames="slprsnid, PayRecordError" ShowGroupFooter="true" >
Markup to add a total row to the grid
<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False" ShowFooter="True">
<MasterTableView ShowFooter="True">
<Columns>
<!-- Example numeric column -->
<telerik:GridBoundColumn
DataField="Amount"
HeaderText="Amount"
DataFormatString="{0:C}"
Aggregate="Sum"
FooterAggregateFormatString="Total: {0:C}"
FooterStyle-Font-Bold="true">
</telerik:GridBoundColumn>
<!-- Another numeric column -->
<telerik:GridBoundColumn
DataField="Quantity"
HeaderText="Qty"
Aggregate="Sum"
FooterAggregateFormatString="Total: {0}"
FooterStyle-Font-Bold="true">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>