Declaration
onEventDoubleClick(args)
Parameters
- args.e (DayPilot.Event) - the event reference
- args.preventDefault() - cancels the default action
Example
dp.onEventDoubleClick = function(args) {
if (args.e.id() === "3") {
args.preventDefault();
}
};
api=1
Declaration
onEventDoubleClick(e)
Parameters