Skip to content

Commit f5181e6

Browse files
committed
docs(calendar): add KeyboardNavigation improvement
1 parent 82e3154 commit f5181e6

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

controls/calendar/accessibility-and-internationalization/keyboard-support.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,17 @@ You can use the `TAB` key to focus the control. Once focus is on the **RadCalend
3030

3131
* Pressing the `arrow` keys when focus is on the calendar moves the focused date in the respective direction.
3232

33-
A built-in access key is `Y` so you can use `Alt+Y` to focus the control by default. If you need more granular access key settings, you can use JavaScript to set them:
33+
By default you can use `Ctrl+Y` to focus the control.
34+
35+
With R3 2021 you can now focus the RadCalendar by specifying the Focus Key and modifier/command key as shown below:
36+
37+
````ASPX
38+
<telerik:RadCalendar RenderMode="Lightweight" runat="server" ID="RadCalendar1" EnableKeyboardNavigation="true">
39+
<KeyboardNavigationSettings CommandKey="Alt" FocusKey="Q" />
40+
</telerik:RadCalendar>
41+
````
42+
43+
For previous versions, if you need more granular access key settings, you can use JavaScript to set them:
3444

3545
>caption How to set a custom access key to a RadCalendar.
3646

0 commit comments

Comments
 (0)