onYScaleDblClick

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

void onYScaleDblClick(number index,object section,Event e);
indexnumberthe row index of the clicked cell (zero-based numbering)
sectionobjecta data object of the clicked cell
eEventa native event object

Example

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

Back to top