Reputation: 68
Could someone tell me how to put some html into RadGrid footer? I need to put it not into column footer, but to one for entire grid.
<telerik:RadGrid ID="radGrid" ShowFooter="true" runat="server" AutoGenerateColumns="false">
<MasterTableView>
<Columns>
<telerik:GridBoundColumn DataField="Name" HeaderText="Name">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Position" HeaderText="Position">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
<FooterStyle BorderWidth="10px" BorderColor="Red" />
</telerik:RadGrid>
There is no <FooterTemplate>
tag for "global" footer, so maybe somebody knows the elegant way to do it?
Upvotes: 0
Views: 814
Reputation: 50728
Yeah, I didn't see that as an option. The only thing I can think of, which I haven't verified, is:
Upvotes: 1