Hi Slav,
I've noticed a new issue with this, for some reason on some pages the contenttemplate contents disappear below is a sample page that does this, removing the css that does the display:none resolves this but obviously then displays the sides to the raddock panel. It's almost as if the contenttemplate content is in the wrong page.
Any thoughts?
Regards,
Jon
<head runat="server">
<title></title>
<style type="text/css">
/* CSS for RadDock custom background colour - have to remove the surround which uses images for the borders and use css borders instead */
/* this will remove the unwanted cells */
.rdTop .rdLeft,
.rdTop .rdRight,
.rdMiddle .rdLeft,
.rdMiddle .rdRight,
.rdBottom
{
display: none;
}
/* put the necessary border as the image border from the sprite was removed when the left and right cells were disabled */
.rdTop .rdCenter,
.rdMiddle .rdCenter
{
padding-left:8px !important;
padding-right:8px !important;
border-left: 1px solid #9eb6ce !important;
border-right: 1px solid #9eb6ce !important;
background-color: white !important;
}
.rdMiddle .rdCenter
{
border-bottom: 1px solid #9eb6ce !important;
padding-top:2px !important;
padding-bottom:5px !important;
}
/* Setting custom background colour to Dock content */
.RadDock table.rdTable tr.rdMiddle td.rdCenter .rdContent
{
background-color: white !important;
}
/* END OF CSS for RadDock custom background colour */
</style>
</head>
<body>
<form id="form1" runat="server">
<telerik:RadStyleSheetManager ID="pgRadStyleSheetManager" runat="server"></telerik:RadStyleSheetManager>
<telerik:RadScriptManager ID="pgRadScriptManager" runat="server"></telerik:RadScriptManager>
<telerik:RadDock ID="uxRadDockSecurityProblem" runat="server" Height="65px" Top="100px" Width="400px"
EnableRoundedCorners="false" Pinned="true" Title="j"
EnableAnimation="false" AutoPostBack="false" Resizable="false" DefaultCommands="None" EnableDrag="False"
Tag="">
<ContentTemplate>
sddd
</ContentTemplate>
</telerik:RadDock>
</form>
</body>
</html>