Hello ,
You can achieve this behavior. All you need to do is set RadDock.ForbiddenZones to its inner RadDockZone.
Please take a look at the following code:
<div style="background-color:Green;width:800px;height:800px"> |
<rad:RadDockLayout ID="RadDockLayout1" runat="server"> |
|
<rad:RadDock ID="RadDock1" runat="server" ForbiddenZones="RadDockZone3"> |
<ContentTemplate> |
<rad:RadDockZone ID="RadDockZone3" runat="server"> |
</rad:RadDockZone> |
</ContentTemplate> |
</rad:RadDock> |
|
<rad:RadDock ID="RadDock2" runat="server" ForbiddenZones="RadDockZone4"> |
<ContentTemplate> |
<rad:RadDockZone ID="RadDockZone4" runat="server"> |
</rad:RadDockZone> |
</ContentTemplate> |
</rad:RadDock> |
|
</rad:RadDockLayout> |
|
</div> |
I hope that this will help you to achieve your goals. If you have any other questions please let us know.
Kind regards,
Petio Petkov
the Telerik team