Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Docking > DockZone Id
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 DockZone Id

Feed from this thread
  • skinflint avatar

    Posted on Jan 22, 2010 (permalink)

    Hi,
    does anyone knows how to get DockZone id base on RadDock object placed in zone?

  • Posted on Jan 22, 2010 (permalink)

    Hello,

    You can use the get_dockZoneID() method in order to get the dockzone id from client side.

    ClientSide code:
     
    <script type="text/javascript"
        function getID() { 
            var dock1 = $find('<%=dock1.ClientID %>'); 
            var id = dock1.get_dockZoneID(); 
            alert(id); 
        } 
    </script> 

    Go through the following documentation for more information on most important methods of the client-side RadDock object:
    RadDock Client Object

    -Shinu.

  • Pero Pero admin's avatar

    Posted on Jan 22, 2010 (permalink)

    Hello skinflint,

    You can use the dockableObject.ParentDockingZone property to a reference to the parent docking zone if object is docked. Then use the zone.id to get the id of the zone. More information about the client-side API of the RadDock for ASP.NET can be found on our online documentation.


    Regards,
    Pero
    the Telerik team

    Instantly find answers to your questions on the new Telerik Support Portal.
    Watch a video on how to optimize your support resource searches and check out more tips on the blogs.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Docking > DockZone Id