Currently, I am using the following code to capture click events on Kendo Scheduler events.
$(document).on("click", ".k-event", function (e) {......
However, this event only triggers when clicking on "items/events" in the scheduler. I want to be able to capture the click event on an empty cell.
I tried the following approach without success:
$(document).on("click", ".k-nonwork-hour", function (e) {
alert(d);
});