New to Telerik UI for ASP.NET AJAX? Start 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;
}
}
}