New to Telerik UI for ASP.NET CoreStart a free 30-day trial

Keyboard Navigation

The keyboard navigation of the TaskBoard is always available.

The ASP.NET Core 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 TaskBoard Keyboard Navigation (Demo).

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.

Razor
$(document).ready(function() {
    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