Hi Victor,
Greetings from Syncfusion Support.
We have validated your reported query “Is there an easy way to re-use the quickInfoTemplate with a double click instead of a single click” and achieved your requirement by using eventClick, cellClick and popupOpen events of our scheduler with below code. We have prepared below sample for your reference.
onCellClick(args) {
// Open quickinfo in double click
this.clickCount++;
if (this.clickCount === 1) {
this.singleClickTimer = setTimeout(() => {
this.clickCount = 0;
}, 400);
args.cancel = true;
} else if (this.clickCount === 2) {
args.cancel = false;
clearTimeout(this.singleClickTimer);
this.clickCount = 0;
}
}
onPopupOpen(args) {
if (args.type === 'Editor') {
// Prevent editor window opening on double click
args.cancel = true;
}
}
Kindly try with the above sample and get back to us if you need any further assistance
Regards,
Vinitha