onXScaleDblClick

fires when the user makes a double click on a cell on the x-axis (the Timeline view only)

void onXScaleDblClick(number index,object value,Event e);
indexnumberthe column index of the clicked cell (zero-based numbering)
valueobjecta Date object of the start time stamp of the clicked cell
eEventa native event object

Example

scheduler.attachEvent("onXScaleDblClick", function (index, value, e){
    //any custom logic here
});

Back to top