Opened 4 months ago
Last modified 3 weeks ago
#35870 assigned Bug
Allow customization of the blank option in select dropdowns — at Version 1
Description (last modified by ) ¶
Select dropdown inputs (<select>
) may have an empty first choice meant to leave a blank value or inform the user that they need to pick an option.
The default current value for this option is "---------"
and cannot be customized for the entire project at once. A developer must override each form field individually if they wish to change this value on their website, which is tedious and prone to errors.
The empty choice value is defined as BLANK_CHOICE_DASH
in django.db.models.fields.
Accessibility ¶
The current blank option is also inaccessible; I quote this description from a private ticket that was assigned to me, and therefore cannot be linked directly:
Problem
Whenever a <select> dropdown has no option selected by default, a line of dashes is used inside of an <option>. The majority of screen reader/speech synthesiser combinations don't speak this, and so it can be confusing to hear essentially nothing. This is particularly true when navigating to the first choice from an option with text.
Solution
Use a more perceivable placeholder string for the first option, e.g. "(select an option)", using parentheses to disrupt first-letter keyboard navigation as little as possible.
Proposed change ¶
I foresee two options:
- Replace
BLANK_CHOICE_DASH
with a new, optional setting, which allows users to set the blank option for their project. For backwards compatibility, the default value of the new setting equals"---------"
. - Replace
BLANK_CHOICE_DASH
with a new, more descriptive value in core.
Option 1 will be less disruptive, as this will not break existing behaviors. Option 2 will fix this problem for all users, but it would require translations for every language we offer.
According to the ticket's flags, the next step(s) to move this issue forward are:
- For anyone except the patch author to review the patch using the patch review checklist and either mark the ticket as "Ready for checkin" if everything looks good, or leave comments for improvement and mark the ticket as "Patch needs improvement".
Change History (1)
comment:1 by , 4 months ago
Description: | modified (diff) |
---|---|
Summary: | Allow customization of the empty option in select inputs → Allow customization of the blank option in select dropdowns |