or

Here is a sample page: See the environment information in the UL tag in the markup sample.
Steps to reproduce in IE8:
. Select Image Manager Icon
. Click Cancel button on the image manager dialog
Notice the Scroll bar vanishes. How can I fix this? Thanks.
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %><!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"> <div> <telerik:RadScriptManager ID="ScriptManager1" runat="server" /> <telerik:RadSplitter ID="splitterOuter" Height="99.9%" Width="99.9%" ResizeMode="Proportional" runat="server"> <telerik:RadSplitBar ID="spVertical2" CollapseMode="Both" runat="server" /> <telerik:RadPane ID="paneRightOuter" Scrolling="Y" runat="server"> <telerik:RadSplitter ID="spHorizontalOuter" ResizeMode="AdjacentPane" LiveResize="true" Width="100%" Orientation="Horizontal" runat="server"> <telerik:RadPane ID="rPaneTop" runat="server" Scrolling="None"> <div> <h2>Environment:</h2> <ul> <li>RadEditor.dll Version 7.3.1.0 </li> <li>TeleriK.Web.UI Version 2011.1.315.40</li> <li>Telerik.Web.Design Version 2011.1.315.40 </li> <li>jQuery-1.4.2.js </li> <li>Visual Studio 2010 </li> <li>IE8 </li> </ul> </div> </telerik:RadPane> <telerik:RadSplitBar ID="spHorizontalInner" AdjacentPanesNames-BottomPaneName="rpPaneBot" runat="server" CollapseMode="Both" /> <telerik:RadPane ID="rpPaneBot" Scrolling="none" runat="server"> <telerik:RadEditor runat="server" ID="RadEditor1" Height="400px" SkinID="DefaultSetOfTools"> <Tools> <telerik:EditorToolGroup Tag="FileManagers"> <telerik:EditorTool Name="ImageManager" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="Bold" /> <telerik:EditorTool Name="Italic" /> <telerik:EditorTool Name="Underline" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="ForeColor" /> <telerik:EditorTool Name="BackColor" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="FontName" /> <telerik:EditorTool Name="RealFontSize" /> </telerik:EditorToolGroup> </Tools> <ImageManager ViewPaths="~/Editor/Img/UserDir/Marketing,~/Editor/Img/UserDir/PublicRelations" /> <Content> The tight integration with ASP.NET AJAX and the powerful new capabilities make Telerik's WYSIWYG Editor a flexible and lightweight component, turning it into the fastest loading Web Editor. Among the hottest features are: <ul> <li><em>Single-file, drag-and-drop deployment</em></li> <li><em>Built on top of ASP.NET AJAX</em></li> <li><em>Unmatched loading speed with new semantic rendering </em></li> <li><em>Full keyboard accessibility</em></li> <li><em>Flexible Skinning mechanism</em></li> <li><em>Simplified and intuitive toolbar configuration</em></li> <li><em>Out-of-the-box XHTML-enabled output</em></li> </ul> </Content> </telerik:RadEditor> </telerik:RadPane> </telerik:RadSplitter> </telerik:RadPane> </telerik:RadSplitter> </div> </form></body></html>
<telerik:RadAjaxPanel ID="rap2" runat="server"><telerik:RadTreeView runat="server" ID="tv1" CheckBoxes="true" onnodeexpand="tv1_NodeExpand" onnodecheck="tv1_NodeCheck" ></telerik:RadTreeView></telerik:RadAjaxPanel>protected void Page_Load(object sender, EventArgs e){ if (!Page.IsPostBack) { tv1.Nodes.Clear(); for (int i = 0; i < 10; i++) { tv1.Nodes.Add(new RadTreeNode(i.ToString())); } }}function ClientNodeCheck() { var tree = $find("<%= tv1.ClientID %>"); tree.UpdateState()}radGridProjectDisplay.MasterTableView.SwapColumns(
"PROJECT_NAME", "MKT_PROD");
and it is working fine in one shot.if you go back and flip flop combo value ,
<GroupByExpressions> <telerik:GridGroupByExpression> <GroupByFields> <telerik:GridGroupByField FieldAlias="Status" FieldName="RealStatus" SortOrder="Descending" /> </GroupByFields> <SelectFields> <telerik:GridGroupByField FieldAlias="Status" FieldName="RealStatus" /> </SelectFields> </telerik:GridGroupByExpression></GroupByExpressions>