New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Drill Down

  • Computer System
    • Hardware
      • Motherboard
      • Storage
      • Input/Output Devices
    • Software
      • System
      • Applications

RadOrgChart's Drill Down functionality is very useful when displaying a lot of information. It provides the possibility to drill down on nodes which can be a way to save space in the user-interface while still providing the user with all the needed information.
While observing a specific branch of the RadOrgChart's hierarchy the user is also given the ability to drill up to the parent/root node.

It is enabled by setting the EnbaleDrillDown property to true.

  • DefaultVB.aspx
  • DefaultVB.aspx.vb
  • styles.css
<%@ Page Language="vb" CodeFile="DefaultVB.aspx.vb" AutoEventWireup="true" Inherits="OrgChart.Examples.DrillDown.DefaultVB" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>

<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
    <link rel="stylesheet" type="text/css" href="styles.css" />
</head>

<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />

    <telerik:RadAjaxLoadingPanel runat="server" ID="RadLoadingPanel1" Skin="Telerik" />

    <div class="demo-container no-bg">
        <telerik:RadAjaxPanel runat="server" ID="RadAjaxPanel1" LoadingPanelID="RadLoadingPanel1">
            <telerik:RadOrgChart RenderMode="Lightweight" ID="RadOrgChart1" runat="server" EnableDrillDown="true" Skin="Default"/>
        </telerik:RadAjaxPanel>
    </div>

    </form>
</body>
</html>

Support & Learning Resources

Find Assistance