onEmptyClick

fires when the user clicks on an empty space in the scheduler (not on events)

void onEmptyClick(object date,Event e);
dateobjecta date which corresponds to the point that the user clicks on
eEventa native event object

Example

scheduler.attachEvent("onEmptyClick", function (date, e){
       //any custom logic here
});

Related samples

Back to top