DayPilot.Gantt.onRowDoubleClicked

The onRowDoubleClicked event is fired when the user double-clicks a task row header of the JavaScript Gantt Chart component, after the default action (specified by the rowDoubleClickHandling property).

Arguments

  • args.task - a DayPilot.Task object representing the task
  • args.x (number) - column index (available since 2023.1.5529)

Example

dp.onRowDoubleClicked = function(args) {
  alert("Clicked: " + args.task.id());
};