Is there keyboard support for navigation in dialog?
What kind of keyboard support do you have in mind here?
Closed because of inactivity
Hey, I was searching for any issues related to keyboard navigation and noticed this was labeled as 'needs more info'. My needs require the use of only a keyboard to select a date. I'm happy to help discuss what this should be like.
To support certain levels of accessibility guidelines a user should be able to use just a keyboard and currently selecting a date isn't possible.
In my use case for the date picker being able to type in a date is not possible as the dates shown are current events which are loaded from an API and therefore the user does not know what's available.
Some suggestions:
Let me know your thoughts.
Thanks for the great component and accessibility will be a great addition.
Let's take how others are doing this:
Keyboard support
Depending on datepicker's current mode, the date may refer either to day, month or year. Accordingly, the term view refers either to a month, year or year range.
Left: Move focus to the previous date. Will move to the last date of the previous view, if the current date is the first date of a view.
Right: Move focus to the next date. Will move to the first date of the following view, if the current date is the last date of a view.
Up: Move focus to the same column of the previous row. Will wrap to the appropriate row in the previous view.
Down: Move focus to the same column of the following row. Will wrap to the appropriate row in the following view.
PgUp: Move focus to the same date of the previous view. If that date does not exist, focus is placed on the last date of the month.
PgDn: Move focus to the same date of the following view. If that date does not exist, focus is placed on the last date of the month.
Home: Move to the first date of the view.
End: Move to the last date of the view.
Enter/Space: Select date.
Ctrl+Up: Move to an upper mode.
Ctrl+Down: Move to a lower mode.
Esc: Will close popup, and move focus to the input.
Notes
If the date a user enters falls outside of the min-/max-date range, a dateDisabled validation error will show on the form.
This is a needed feature for us too, so we will investigate it.
Okay, this seems to be a nice feature. If someone is able to implement this, we're happy to support it!
I'm OK to start a Pull Request on that.
awesome thanks guys! accessibility support via keyboard input so valuable to an accessible web for everyone of all human capabilities.
This will be available in the next release! Thanks @jmfrancois!
Hi all i want to select date from keyboard . how can i do it anyone any idea . if i type like 12/03/2019 then that particular date should be marked as selected.
Most helpful comment
Let's take how others are doing this:
This is a needed feature for us too, so we will investigate it.