New to Kendo UI for jQueryStart a free 30-day trial

Keyboard Navigation

The keyboard navigation of the TaskBoard is always available.

The Kendo UI TaskBoard supports the following keyboard shortcuts:

SHORTCUTDESCRIPTION
Tabnavigates to the TaskBoard
Left Arrowfocuses the previous column or a card in the previous column
Right Arrowfocuses the next column or a card in the next column
Up Arrowfocuses the previous card
Down Arrowfocuses the next card
Enterselects the focused card
Deletedeletes the focused card
Ctrl+eputs the focused card or column in edit mode
Ctrl+aadds a new column or card

For a complete example, refer to the demo on keyboard navigation of the TaskBoard.

Register Shortcut

Additional shortcuts can be registered in the TaskBoard, with the registerShortcut client-side API method.

The following example demonstrates how to register a shortcut for focusing the last card in the TaskBoard.

js
var taskBoard = $("#taskBoard").data("kendoTaskBoard");

taskBoard.registerShortcut("*", {
    keyCode: "q",
    ctrlKey: true
}, {
    handler: function () {
        taskBoard.items().last().focus();
    }
});

See Also

In this article
Register ShortcutSee Also
Not finding the help you need?
Contact Support