Support,
Rad Version Used: RadControls_for_ASP.NET_AJAX_2009_1_527_dev
Browser : IE 7
Issue:
We are facing a RadGrid's horizontal scrollbar diappearing issue when we swith-on the Frozen column feature.
We have a Rad Splitter with RadPane1 and RadPane2 the RadGrid is in RadPane2. The rad grid has 25 columns.
The scenario happens only when you move the scroll bar to the right extreme and then Collapse/Expand the RadSplitterbar.
The only way to get back the scroll bar is to refresh page, and obviously we will loose all client side data when that happens. This has put the project in Red.
This issue does not happen when the scroll bar is on the very left.
Kindly let us know the fix.
The .aspx code is listed below:
<%
@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%
@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
<title>Untitled Page</title>
</
head>
<
body>
<form id="form1" runat="server">
<div>
<telerik:RadScriptManager ID="rsm" runat="server" >
</telerik:RadScriptManager>
<telerik:RadSplitter ID="RadSplitter1" Skin="WebBlue" runat="server" BackColor="#f0f0f0"
Height="535px" Width="100%">
<telerik:RadPane ID="RadPane1" runat="server" Font-Bold="true" Font-Size="50px" >
</telerik:RadPane>
<telerik:RadSplitBar ID="RadSplitBar1" runat="server" CollapseMode="Forward" />
<telerik:RadPane ID="RadPane2" Scrolling="None" runat="server"
BackColor="#f0f0f0" >
<telerik:RadGrid ID="ExcelSheetGrid" Skin="Vista" runat="server" AutoGenerateColumns="true"
BackColor="Transparent" GridLines="None" PageSize="10" ShowFooter="false" Width="99.8%"
AllowPaging="True" Height ="500px" OnNeedDataSource="ExcelSheetGrid_NeedDataSource" HeaderStyle-Wrap="true">
<HeaderStyle Width ="150px" />
<ClientSettings>
<Scrolling AllowScroll="True" SaveScrollPosition="true" FrozenColumnsCount="1" UseStaticHeaders="True" />
<Selecting AllowRowSelect="True" />
</ClientSettings>
</telerik:RadGrid>
</telerik:RadPane>
</telerik:RadSplitter>
</div>
</form>
</
body>
</
html>