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

OnClientTaskEditing

The OnClientTaskEditing occurs when the user starts task edit upon double click on a cell or a task element. Event can be canceled. The equivalent of Kendo UI Gantt edit event.

The event handler receives two parameters:

  1. The instance of the Gantt control firing the event.

  2. An eventArgs parameter containing the following methods:

  • get_task returns the current moved task.

  • set_cancel lets you cancel the event and prevent the task editing.

  • get_cancel returns true if the event has been canceled.

  • get_container returns the jQuery object representing the wrapping cell element. That element contains the editing UI.

  • get_sender returns the underlying Kendo UI Gantt widget that fired the event.

<telerik:RadGantt RenderMode="Lightweight" runat="server" id="RadGantt1" OnClientTaskEditing="OnClientTaskEditing">
</telerik:RadGantt>
function OnClientTaskEditing(sender, eventArgs) {
    args.set_cancel(true);
}

See Also

In this article