The onEventDoubleClick event handler is fired for event double clicks (before the default action). By default, the double click is disabled - it can be enabled using eventDoubleClickHandling property.
onEventDoubleClick(args)
dp.onEventDoubleClick = function(args) { if (args.e.id() === "3") { args.preventDefault(); } };
onEventDoubleClick(e)