Completed
Last Updated: 21 Apr 2017 14:11 by Max Petersen
ADMIN
Rumen
Created on: 06 Mar 2017 11:35
Category: Splitter
Type: Bug Report
0
Gray background in RadSplitter, RadFileExplorer and RadEditor dialogs with RenderMode Classic and Default/Silk skins
RadSplitter is loaded with the gray background when configured with Default/Silks/Bootstrap skins in RenderMode="Classic".

The issue applies to RadFileExplorer and RadEditor file browser dialogs too which use RadSplitter inside.

The background is white in version 2017.1.118.40 and earlier.

Workaround:
Switch to RenderMode="lightweight"

or 

RadSplitter: Apply the BackColor property to RadSplitter or its RadPane items.
RadFileExplorer: 
ASPX:
<telerik:RadFileExplorer ID="RadFileExplorer1" runat="server" RenderMode="Classic">
    <Configuration ViewPaths="~/"  />
</telerik:RadFileExplorer>
Codebehind:
using Telerik.Web.UI;

public partial class Default2 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        (RadFileExplorer1.Splitter.GetPanes()[0] as RadPane).BackColor = System.Drawing.Color.White;
        (RadFileExplorer1.Splitter.GetPanes()[1] as RadPane).BackColor = System.Drawing.Color.White;
    }
}
1 comment
Max Petersen
Posted on: 14 Mar 2017 09:32
We also experience the problem with the Metro skin. Do you know when an official fix will be ready?