Event double click is disabled by default.

You can enable it using EventDoubleClickHandling property (.eventDoubleClickHandling in JavaScript).

If you enable event double click the event click event will be delayed by the doubleClickTimeout value.

JavaScript

Example

<div id="dp"></div>


<script type="text/javascript">
  var dp = new DayPilot.Scheduler("dp");
  dp.eventDoubleClickHandling = "Enabled";
  dp.onEventDoubleClick = function(args) {
    alert("Event with id " + args.e.id() + " was double-clicked");
  };
</script>

See also

ASP.NET WebForms

Supported handling types (EventDoubleClickHandling property):

  • Disabled (default)
  • CallBack
  • PostBack
  • Edit
  • Select
  • Bubble
  • JavaScript

If you choose CallBack or PostBack handling, the server-side EventDoubleClick event will be fired.

See also event click.