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

WebParts && Nested RadDocks

3 Answers 41 Views
Dock
This is a migrated thread and some comments may be shown as answers.
G.
Top achievements
Rank 1
G. asked on 18 Oct 2011, 01:03 AM
Thank you in advance...

I am working on a project in which I would like to utilize RadDocks to create a user customizable environment.  The host website is a Sharepoint site that consists of MOSS host pages that contain numerous User controls.

I was wondering if the RadDock controls can be used in the MOSS host pages to contain WebParts?

Secondly... is it possible to have nested RadDocks? 

i.e.

        MOSS Host Pages
            - RadDocks (containers for multiple User Controls on host page)
                - User Control
                    - RadDocks (container for multiple asp.net controls)

3 Answers, 1 is accepted

Sort by
0
Slav
Telerik team
answered on 20 Oct 2011, 12:57 PM
Hi Gerald,

Yes, the RadDock, as well as the rest of the RadControls, works with MOSS. You can use our online help for more information on how to integrate the RadDock  in MOSS: Deploying RadControls for ASP.NET Ajax and Incorporating RadControls for ASP.NET Ajax in MOSS WebSites. As for the contained WebParts, please clarify if they are Sharepoint WebParts or standard ones.

It is possible to nest RadDocks, for example you can insert a RadDockZone in the ContentTemplate of a RadDock and then you can place a dock control in this dock zone, as shown below:
<telerik:RadDockLayout runat="server" ID="RadDockLayout1">
    <telerik:RadDockZone runat="server" ID="RadDockZone1">
        <telerik:RadDock runat="server" ID="RadDock1">
            <ContentTemplate>
                <telerik:RadDockZone runat="server" ID="RadDockZone2">
                    <telerik:RadDock runat="server" ID="RadDock2">
                    </telerik:RadDock>
                </telerik:RadDockZone>
            </ContentTemplate>
        </telerik:RadDock>
    </telerik:RadDockZone>
</telerik:RadDockLayout>

I hope the provided information will help you with your further development.

All the best,
Slav
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
Yankev
Top achievements
Rank 1
answered on 12 Sep 2012, 05:09 PM
Is it possible to have a RadDock containing a standard webPart?
0
Slav
Telerik team
answered on 17 Sep 2012, 01:19 PM
Hi Yankev,

The Web Part control is placed in a Web Part Zone, so you cannot insert it directly in a RadDock. If you add a Web Part Zone in the ContentTemplate of a dock control, as shown in this online demo, you will be able to move a Web Part in this inner zone.

Greetings,
Slav
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Dock
Asked by
G.
Top achievements
Rank 1
Answers by
Slav
Telerik team
Yankev
Top achievements
Rank 1
Share this question
or