New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
TaskInsert
The RadGantt TaskInsert is fired when a task's collection is about to be inserted in the database.
TaskInsert event handler receives two parameters:
-
sender is the RadGantt control instance.
-
e is an object of type GanttEventArgs. It gives you access to the inserted RadGantt tasks collection.
Example
ASP.NET
<telerik:RadGantt RenderMode="Lightweight" ID="RadGantt1" runat="server" OnTaskInsert="RadGantt1_TaskInsert"></telerik:RadGantt>
C#
protected void RadGantt1_TaskInsert(object sender, Telerik.Web.UI.Gantt.GanttEventArgs e)
{
foreach (var item in e.Tasks)
{
item.Title = "Modified Title";
}
}