You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, there is no way to specify a programmatic value separate from the name for comboboxes. This is an issue when creating a combobox out of something other than an <input> element.
Aside from the theoretical need, this means creating a select-only combobox requires either using an <input readonly> (undesired, since it is not readonly), or combining the value and name together.
aria-valuetext seems like it might be a reasonable solution, if it were allowed on combobox.
Thoughts? (This relates to the 3/17 aria-practices tf discussion on a select-only combobox example)
The text was updated successfully, but these errors were encountered:
Right now, there is no way to specify a programmatic value separate from the name for comboboxes. This is an issue when creating a combobox out of something other than an
<input>
element.Aside from the theoretical need, this means creating a select-only combobox requires either using an
<input readonly>
(undesired, since it is not readonly), or combining the value and name together.aria-valuetext
seems like it might be a reasonable solution, if it were allowed oncombobox
.Thoughts? (This relates to the 3/17 aria-practices tf discussion on a select-only combobox example)
The text was updated successfully, but these errors were encountered: