DayPilot.Gantt.onRowEdited

Fired when the user finished inline row editing, after the default RowEdit action (specified by rowEditHandling property).

The default action can be canceled by calling args.preventDefault().

Arguments

  • args.task - holds a DayPilot.Task object representing the task
  • args.newText (string) - new text provided by the user

Example

dp.onRowEdited = function(args) {
  alert("Task renamed to: " + args.newText);
};