This is a migrated thread and some comments may be shown as answers.

There's no image in RadSplitBar ?!?

1 Answer 14 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Marja
Top achievements
Rank 1
Marja asked on 29 Nov 2013, 12:17 PM
We're evaluating the trial version of the controls, but we're not getting a splitbar image, no matter which skin we select or which browser we use.
The test project is referencing runtime version v4.0.30319 of both Telerik.Web.UI.dll  and Telerik.Web.UI.Skins.dll.

The ultra simple code of our testpage:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="TestRadSplitter.aspx.vb"
    Inherits="WebwareNET.TestRadSplitter" %>
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
    <div>
        <telerik:RadSplitter ID="RadSplitter1" Width="100%" Height="100%" Orientation="Vertical"
            LiveResize="True" runat="server" Skin="MetroTouch">
            <telerik:RadPane ID="LeftPane" MinWidth="200" Width="200"
                Scrolling="None" runat="server">
                Inside left pane
            </telerik:RadPane>
            <telerik:RadSplitBar ID="RadSplitBar1" runat="server">
            </telerik:RadSplitBar>
            <telerik:RadPane ID="RightPane" Scrolling="Both" runat="server">
                Inside right pane
            </telerik:RadPane>
        </telerik:RadSplitter>
    </div>
    </form>
</body>
</html>

And what we see in the browser can be seen in the attached screenshot.

What do we need to do to get the splitbar image in the RadSplitBar?

1 Answer, 1 is accepted

Sort by
0
Accepted
Vessy
Telerik team
answered on 02 Dec 2013, 05:38 PM
Hello Marja,

You can enable to collapse/expand buttons of the Splitbar by configuring its CollapseMode property:
<telerik:RadSplitBar ID="RadSplitBar1" runat="server" CollapseMode="Both">
</telerik:RadSplitBar>

You can find useful information on the subject in the following help article: Collapsing Panes

Regards,
Veselina Raykova
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Splitter
Asked by
Marja
Top achievements
Rank 1
Answers by
Vessy
Telerik team
Share this question
or