The timeRangeDoubleClickCallBack() method fires the TimeRangeDoubleClick event on the server side using a CallBack (ASP.NET WebForms, ASP.NET MVC, Java).
Declaration
DayPilot.Month.timeRangeDoubleClickCallBack(start, end[, data]);Parameters
start(DayPilot.Date) - start of the time rangeend(DayPilot.Date) - end of the time rangedata(object) - additional custom data
Notes
Use this legacy helper to invoke the server-side time range double-click action manually.
The optional data parameter lets you include additional custom data with the callback request.
Example
dp.timeRangeDoubleClickCallBack(start, end, { source: "selection" });See Also
DayPilot.Month.timeRangeDoubleClickHandling
DayPilot.Month.onTimeRangeDoubleClick
DayPilot