We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f175bfd commit b7b28f8Copy full SHA for b7b28f8
components/dateinput/keyboard-typing.md
@@ -61,12 +61,10 @@ See the [example](#example) below.
61
62
The left and right arrows always change the focused segment, regardless of this parameter value.
63
64
-To define `Tab` as an auto-switch key, use its ASCII code `9`. Note that this may be unexpected for some keyboard users.
+To define `Tab` as an auto-switch key, use its key name `"tab"`. Note that this may be unexpected for some keyboard users.
65
66
-<div class="skip-repl"></div>
67
-
68
-````RAZOR
69
-<TelerikDateInput AutoSwitchKeys="@( new List<object>() { "/", 9 } )" />
+````RAZOR.skip-repl
+<TelerikDateInput AutoSwitchKeys="@( new List<object>() { "/", "tab" } )" />
70
````
71
72
See the [complete example](#example) below.
0 commit comments