Hello Telerik,
I can't seem to hide my RadDock's border no matter what. I've tried all the options below but it still shows (see attached screenshot):
In my code behind:
Dim rd As New RadDock rd.ID = "Dock1" rd.DockMode = DockMode.Docked rd.DockHandle = DockHandle.None rd.ControlStyle.BorderStyle = BorderStyle.None rd.ControlStyle.BorderWidth = 0 rd.Resizable = False rd.BorderStyle = BorderStyle.None rd.BorderWidth = 0 rd.ContentContainer.BorderStyle = BorderStyle.None rd.ContentContainer.BorderWidth = 0 In my .ASPX file:
<style type="text/css"> /* Remove border on all docks */ .rdTable, .rdTop, .rdMiddle, .rdBottom { border-width: 0px !important; border-style: none !important; } </style>I'm out of ideas. Am I missing something else?
Thanks for any help.