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

web.config skin registration

1 Answer 63 Views
Dock
This is a migrated thread and some comments may be shown as answers.
pylacroix
Top achievements
Rank 1
pylacroix asked on 17 May 2010, 03:36 PM
Hi,

How is it possible to add the control RadDockZone in the appSettings in order to use the skin registration ?

I tried
<add key="Telerik.Dock.DockZone.EnableEmbeddedSkins" value="false" /> 
<add key="Telerik.DockZone.EnableEmbeddedSkins" value="false" /> 
<add key="Telerik.Dock.RadDockZone.EnableEmbeddedSkins" value="false" /> 
<add key="Telerik.Zone.EnableEmbeddedSkins" value="false" /> 

but none of them works

I want to be able to reproduce the following RadDockZone.
<telerik:RadDockZone runat="server" id="RadDockZone1" EnableEmbeddedSkins="False"
    <telerik:RadDock id="RadDock1" Collapsed="true" Skin="MySkin" EnableEmbeddedSkins="false" EnableDrag="false" DefaultCommands="ExpandCollapse" runat="server"
        <TitlebarTemplate> 
            <asp:Image ImageUrl="~/images/Info_Icon.gif" ImageAlign="AbsMiddle" runat="server" /> 
            <asp:Label Text="<% $ Resources:Resource, lblHelpHeader %>" runat="server" /> 
        </TitlebarTemplate> 
        <ContentTemplate> 
            <align="justify"><asp:Label ID="lblText" runat="server" /></p
        </ContentTemplate> 
    </telerik:RadDock> 
</telerik:RadDockZone> 

It works fine for the RadDock, but I really need to be able to add the EnableEmbeddedSkins="False" for the RadDockZone.

Take a look to the attached file, you will see that there is a border that is used by the RadDockZone when EnableEmbeddedSkins="True" which I really want to get rid of.


Thanks

1 Answer, 1 is accepted

Sort by
0
pylacroix
Top achievements
Rank 1
answered on 18 May 2010, 03:04 PM
I found a work around using a global css style

.RadDockZone 
    padding0px !important; 
    border0px !important; 

Tags
Dock
Asked by
pylacroix
Top achievements
Rank 1
Answers by
pylacroix
Top achievements
Rank 1
Share this question
or