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

AssignmentInsert

The RadGantt AssignmentInsert event is fired when an assignment's collection is about to be inserted in the database.

AssignmentInsert event handler receives two parameters:

  • sender is the RadGantt control instance.

  • e is an object of type AssignmentEventArgs. It gives you access to the inserted RadGantt assignments collection.

Example

<telerik:RadGantt RenderMode="Lightweight" ID="RadGantt1" runat="server" OnAssignmentInsert="RadGantt1_AssignmentInsert"></telerik:RadGantt>
protected void RadGantt1_AssignmentInsert(object sender, Telerik.Web.UI.Gantt.AssignmentEventArgs e)
{
    foreach (var item in e.Assignments)
    {
        //...
    }
}
Protected Sub RadGantt1_AssignmentInsert(sender As Object, e As Telerik.Web.UI.Gantt.AssignmentEventArgs)
    For Each item As var In e.Tasks
        '...
    Next
End Sub

Subscribing to only one of the following events: AssignmentInsert, AssignmentUpdate, AssignmentDelete, will cause a postback to be triggered for the other two events, instead of a callback.

See Also

In this article