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

DrillDown to View Details

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 users with all the information they need.
The demo demonstrates how to observe a particular Node of the RadOrgChart not the whole branch. While inspecting the detailed infomation about an employee you have the ability to navigate to the orgchart hierarchy.

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.ApplicationScenarios.DrillDownToViewDetails.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="RadAjaxLoadingPanel1">
    </telerik:RadAjaxLoadingPanel>

    <div class="demo-container no-bg">

        <telerik:RadAjaxPanel runat="server" ID="RadAjaxPanel1" LoadingPanelID="RadAjaxLoadingPanel1">
            <telerik:RadOrgChart RenderMode="Lightweight" runat="server" ID="RadOrgChart1" EnableDrillDown="true" DisableDefaultImage="true"
                Skin="Default">
            </telerik:RadOrgChart>
        </telerik:RadAjaxPanel>

    </div>

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

Support & Learning Resources

Find Assistance