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

Keyboard Navigation

The keyboard navigation of the TimeLine is always available.

In its vertical mode when the TimeLine is focused, the first card gets focused. In its horizontal mode when the TimeLine is focused, the timeline scrollable wrap element gets focused.

For a complete example, refer to the demo on keyboard navigation of the TimeLine showing how to focus the component when in the vertical mode.

To focus the component with the ALT + W key combination when in its horizontal mode, use the .k-timeline-scrollable-wrap class as a selector.

javascript
$(document.body).keydown(function (e) {
    if (e.altKey && e.keyCode == 87) {
        $(".k-timeline-scrollable-wrap").focus();
    }
});

In vertical mode, the Kendo UI for jQuery TimeLine supports the following keyboard shortcuts:

SHORTCUTDESCRIPTION
TabFocuses the next card.
Shift + TabFocuses the previous card.
SpaceToggles the expand and collapse state of the item.
EnterToggles the expand and collapse state of the item.

In horizontal mode, the Kendo UI for jQuery TimeLine supports the following keyboard shortcuts:

SHORTCUTDESCRIPTION
EnterSelects the current event.
SpaceSelects the current event.
Left ArrowFocuses the previous date.
Right ArrowFocuses the next date.

See Also

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