The rowDoubleClickHandling property (string) specifies the default action for row double-clicks in the JavaScript Gantt Chart. See also onRowDoubleClick and onRowDoubleClicked.
DayPilot.Gantt.rowDoubleClickHandling"Disabled" - row double-clicking is disabled.
"Enabled" - row double-clicking is enabled, events are fired, and no default action is performed.
"PostBack" - uses the ASP.NET WebForms postback handler.
"CallBack" - uses ASP.NET WebForms, ASP.NET MVC, and Java versions only.
"JavaScript" - uses the legacy API v1 client-side handler in ASP.NET WebForms and ASP.NET MVC.
"Edit" - activates inline row header editing.
"Select" - selects a row.
"Disabled"JavaScript
const gantt = new DayPilot.Gantt("dp", {
rowDoubleClickHandling: "Edit",
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
rowDoubleClickHandling: "Edit",
// ...
};React
<DayPilotGantt
rowDoubleClickHandling="Edit"
{/* ... */}
/>Vue
<DayPilotGantt
rowDoubleClickHandling="Edit"
<!-- ... -->
/>DayPilot.Gantt.onRowDoubleClick