New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

DependencyDelete

The RadGantt DependencyDelete is fired when a dependency collection is about to be deleted from the database through the provider.

DependencyDelete event handler receives two parameters:

  • sender is the RadGantt control instance.

  • e is an object of type DependencyEventArgs. It gives you access to the deleted Dependencies collection.

Example

ASP.NET
<telerik:RadGantt RenderMode="Lightweight" ID="RadGantt1" runat="server" OnDependencyDelete="RadGantt1_DependencyDelete"></telerik:RadGantt>
C#
protected void RadGantt1_DependencyDelete(object sender, Telerik.Web.UI.Gantt.DependencyEventArgs e)
{
    foreach (var dependency in e.Dependencies)
    {
        if (dependency.Type == Telerik.Web.UI.Gantt.DependencyType.FinishFinish)
        {
            e.Cancel = true;
        }
    }
}

See Also

In this article
ExampleSee Also
Not finding the help you need?
Contact Support