I'm trying to implement a keyboard interface to my fullcalendar widget in an Angular app. The requirements call for being able to delete an event using the delete key, but there doesn't seem to be any keyboard event to attach to.
I've added the concept of selection to an event by listening for the click on it - then it shows itself differently, but how to actually listen for a keydown event?
Since fullcalendar is dependent on jquery I tried adding an event listener using .on('keydown'...) but it never fires, although using a similar technique to listen for click events does work, so maybe somehow fullcalendar is eating keypresses.