Treegrid Example: getFocusableElements() does not support including <select> elements in cells #2740
Labels
Example Page
Related to a page containing an example implementation of a pattern
Feedback
Issue raised by or for collecting input from people outside APG task force
In the Treegrid pattern examples, there is a function called
getFocusableElements()
that is used to find interactive child elements of a selected row and toggle theirtabindex
values. The function specifies which elements should be focusable, noting that<textarea>
has been left out deliberately:root.querySelectorAll('a,button,input,td>[tabindex]');
The list should include the
<select>
element as well.The text was updated successfully, but these errors were encountered: