onYScaleClick

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

void onYScaleClick(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("onYScaleClick", function (index, section, e){
    //any custom logic here
});

Back to top