Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Docking > Dock dynamic creation and final result for the client.
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered Dock dynamic creation and final result for the client.

Feed from this thread
  • raffy de la cruz avatar

    Posted on Oct 5, 2010 (permalink)

    Greetings.

    I trabajandon with the docking, the dynamically created I add dynamic content and keep in a database when I open the page all right, my question is, the final client will see the page is not about the radock only the content, I see pages that have a button named preview where it leaves the same page conttroles dynamics but without the dock, they do this.

  • Pero Pero admin's avatar

    Posted on Oct 8, 2010 (permalink)

    Hello Raffy,

    First of all, could you please clarify which RadControls set are you using, RadControls for ASP.NET AJAX or RadControls for ASP.NET Classic?

    1. RadDock for ASP.NET AJAX

    You should set the RadDock's DockHandle property to DockHandle.None, and use the following CSS to disable the borders on the RadDock controls on the page:

    <style type="text/css">
        .rdTop .rdCenter
        {
            background: none !important;
        }
        .rdTop .rdLeft, .rdTop .rdRight, .rdMiddle .rdLeft, .rdMiddle .rdRight, .rdBottom .rdRight, .rdBottom .rdCenter, .rdBottom .rdLeft
        {
            display: none !important;
        }
    </style>

    Setting BorderStyle="None" will disable the borders of the RadDockZone.


    2. RadDockableObject for ASP.NET Classic

    Set the DockingMode property of the RadDockableObject to Disabled, and only the content will be shown. Here is an example that demonstrates this: http://demos.telerik.com/aspnet-classic/Dock/Examples/DockingModes/DefaultCS.aspx.

    Setting BorderStyle="None" will also disable the borders of the RadDockingZone.

    Kind regards,
    Pero
    the Telerik team

    Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Docking > Dock dynamic creation and final result for the client.