The rowDoubleClickHandling property (string) specifies the default action for row double-clicks in the JavaScript Gantt Chart. See also onRowDoubleClick and onRowDoubleClicked.
Declaration
DayPilot.Gantt.rowDoubleClickHandlingPossible Values
"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.
Default Value
"Disabled"Examples
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"
<!-- ... -->
/>See Also
DayPilot.Gantt.onRowDoubleClick
DayPilot.Gantt.onRowDoubleClicked
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot