Can you not set the border style and backcolor of a DockZone via the CSSClass property? For example if I define a dockzone as such
<telerik:RadDockZone ID="dockZoneLeft" runat="server" Width="99%" MinHeight="400px" HighlightedCssClass="dockZoneLeftColumnHighlight" Orientation="Vertical" BackColor="transparent" BorderStyle="None">
it displays as I want but if I define it like this
<telerik:RadDockZone ID="dockZoneLeft" runat="server" Width="99%" MinHeight="400px" CssClass="dockZoneLeftColumn" HighlightedCssClass="dockZoneLeftColumnHighlight" Orientation="Vertical">
it does not seem to read the css. Also HighlightedCssClass does not work in either instance.
Here are my css classes for each.
.dockZoneLeftColumn
{
background-color: transparent;
border: 'none 0px transparent';
}
.dockZoneLefttColumnHighlight
{
background-color:Yellow;
border:dashed 1px black;
}
Thanks!