I have a grid in which I display column totals in the footer.
Below is the declaration of my grid column.
I am having troubles with the footer when exporting the grid.
The total and the grand total columns overlap each other and are not displayed on separate lines.
I have my exportonlydata set to true.
How can I get the line break in the footer.
Below is the declaration of my grid column.
<telerik:GridTemplateColumn UniqueName="EndBalance" HeaderText="Ending Balance" ItemStyle-HorizontalAlign="Right" FooterStyle-HorizontalAlign="Right"> <ItemTemplate> <asp:HyperLink ID="linkEndBalance" runat="server" Text='<%# Eval("EndBalanceDollars")%>'></asp:HyperLink> </ItemTemplate> <FooterTemplate> <asp:HyperLink ID="linkEndBalanceTotal" runat="server"></asp:HyperLink> <br /> <asp:HyperLink ID="linkEndBalanceGrandTotal" runat="server"></asp:HyperLink> </FooterTemplate> </telerik:GridTemplateColumn>I am having troubles with the footer when exporting the grid.
The total and the grand total columns overlap each other and are not displayed on separate lines.
I have my exportonlydata set to true.
How can I get the line break in the footer.