I have a rad grid with grouping. My group totals show but I cannot get the FooterText for the group and the Footer style for the group.
<
telerik:RadGrid ShowGroupPanel="true" AllowSorting="true" AutoGenerateColumns="false" ShowFooter="true" ID="gridPayCode" runat="server"
onneeddatasource="gridPayCode_NeedDataSource">
<MasterTableView ShowGroupFooter="true">
<Columns>
<telerik:GridBoundColumn DataField="facility_site_num" HeaderText="Site#"></telerik:GridBoundColumn>
<telerik:GridBoundColumn FooterText="Total:" FooterStyle-Font-Bold="true" FooterStyle-HorizontalAlign="Right" DataField="FacilityName" HeaderText="Facility"></telerik:GridBoundColumn>
<telerik:GridBoundColumn Aggregate="Sum" FooterStyle-HorizontalAlign="Right" FooterStyle-Font-Bold="true" DataFormatString="{0:c}" HeaderStyle-HorizontalAlign="Right" ItemStyle-HorizontalAlign="Right" DataField="PayAmount" HeaderText="Amount"/>
</Columns>
<GroupByExpressions>
<telerik:GridGroupByExpression>
<GroupByFields>
<telerik:GridGroupByField FieldName="PayCode" />
</GroupByFields>
<SelectFields>
<telerik:GridGroupByField FieldName="PayCode" HeaderText="Pay Code" />
<%
--<telerik:GridGroupByField Aggregate="Sum" FormatString="{0:c}" FieldName="PayAmount" HeaderText="Total" />--%>
</SelectFields>
</telerik:GridGroupByExpression>
</GroupByExpressions>
</MasterTableView>
</
telerik:RadGrid>