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

SlidingPane border not showing up

1 Answer 81 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Peichung
Top achievements
Rank 1
Peichung asked on 09 Jul 2009, 05:54 PM

I tried to add border style to RadSlidingZone (see below: BorderColor="Red" BorderStyle="Solid" BorderWidth="2px"), but it doesn't have any effect:

<%@ Page Language="C#" %> 
<%@ 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"> 
 
<html xmlns="http://www.w3.org/1999/xhtml">  
<head runat="server">  
    <title></title>  
</head> 
<body> 
    <form id="form1" runat="server">  
      
        <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager> 
      
        <telerik:RadSplitter ID="Splitter1" runat="server" Width="100%" Height="800px" Skin="WebBlue" Orientation="Vertical">    
            <telerik:RadPane ID="ParamPane1" runat="server" Width="22px" Scrolling="None">    
                <telerik:RadSlidingZone ID="ParamSlidingZone1" Runat="server" Width="22px" ExpandedPaneId="Parameter1" ClickToOpen="true">    
                    <telerik:RadSlidingPane ID="Parameter1" runat="server" Title="Parameter" Scrolling="None" EnableDock="false" EnableResize="false" BackColor="Beige" BorderColor="Red" BorderStyle="Solid" BorderWidth="2px"  Width="890px" /> 
                </telerik:RadSlidingZone>   
            </telerik:RadPane>   
        </telerik:RadSplitter>   
    </form> 
</body> 
</html> 
 


I am using 2009 Q2, and the browsers are IE6 and IE8.  Thanks,

Peichung

1 Answer, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 13 Jul 2009, 08:33 AM
Hello Peichung,

The three properties have not been implemented because the HTML of the RadSlidingPane is complex and it is not clear to which of the pane's HTML elements the settings should be applied. In order to style the sliding pane, you should use CSS. For example:
<style type="text/css"
.RadSplitter .rspSlidePane .rspSlideContainer 
    border:solid 2px red;        
}

Regards,
Tsvetie
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Splitter
Asked by
Peichung
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Share this question
or