How to listen or get the key event in scheduler e.g. delete key
Answered: The Scheduler doesn't contain any element that can get focus. You can detect the Delete key for the whole page using the following code: <script type="text/javascript"> $(document).keyup(function (e)...
DayPilot