The cardDoubleClickHandling property (string) specifies how the card double click should be handled.
Available since 2025.3.6607.
DayPilot.Kanban.cardDoubleClickHandling"Disabled" - card double clicking is disabled.
"Enabled" - enabled but no default action (use onCardDoubleClick and/or onCardDoubleClicked).
"Bubble" - activates the bubble.
"ContextMenu" - activates the card context menu.
"Edit" - enters inline editing.
"Select" - selects the card.
"Disabled"Set this property to "Enabled" when you want to handle the interaction in onCardDoubleClick or onCardDoubleClicked without a built-in default action.
JavaScript
const kanban = new DayPilot.Kanban("dp", {
cardDoubleClickHandling: "Select",
// ...
});
kanban.init();Angular
<daypilot-kanban [config]="config"></daypilot-kanban>config: DayPilot.KanbanConfig = {
cardDoubleClickHandling: "Select",
// ...
};React
<DayPilotKanban
cardDoubleClickHandling="Select"
{/* ... */}
/>Vue
<DayPilotKanban
cardDoubleClickHandling="Select"
<!-- ... -->
/>