DayPilot.Gantt.onTaskDoubleClicked

Fired when the user double-clicks a task box, after the default TaskDoubleClick action (specified by taskDoubleClickHandling property).

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

Arguments

Example

dp.onTaskDoubleClicked = function(args) {
  alert("Double-clicked: " + args.task.id());
};