Hi,
After upgrading to 2012.1.411 version, the sum of the last column might be hidden in IE.
This problem was not in 2012.1.215.
It only occurs when there is a footer in the last column and that footer is aligned right.
Must also use scrolling and static headers.
Sample:
As you can see in this sample, the sum of the "number" column will be cut off.
Regards
Caesar
After upgrading to 2012.1.411 version, the sum of the last column might be hidden in IE.
This problem was not in 2012.1.215.
It only occurs when there is a footer in the last column and that footer is aligned right.
Must also use scrolling and static headers.
Sample:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="testgrid.aspx.vb" Inherits="WebApplication1.testgrid" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <asp:ScriptManager ID="s" runat="server"> </asp:ScriptManager> <div> <telerik:RadGrid ID="rg" runat="server"> <ClientSettings> <Scrolling AllowScroll="true" ScrollHeight="200px" UseStaticHeaders="true" /> </ClientSettings> <MasterTableView ShowFooter="True" AutoGenerateColumns="false"> <Columns> <telerik:GridBoundColumn DataField="string"></telerik:GridBoundColumn> <telerik:GridNumericColumn DataField="number" Aggregate="Sum"> <ItemStyle HorizontalAlign="Right" /> <FooterStyle HorizontalAlign="Right" /> </telerik:GridNumericColumn> </Columns> </MasterTableView> </telerik:RadGrid> </div> </form></body></html>Public Class testgrid Inherits System.Web.UI.Page Private Sub rg_NeedDataSource(sender As Object, e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles rg.NeedDataSource Dim dt As New DataTable() dt.Columns.Add("string", GetType(String)) dt.Columns.Add("number", GetType(Integer)) For i As Integer = 1 To 7 dt.Rows.Add({"test", i}) Next rg.DataSource = dt End SubEnd ClassAs you can see in this sample, the sum of the "number" column will be cut off.
Regards
Caesar