* Returns the select's listbox if present.
()
| 259 | * Returns the select's listbox if present. |
| 260 | */ |
| 261 | getListbox(): HTMLElement | null { |
| 262 | let listBoxId = this.getTrigger().getAttribute('aria-controls'); |
| 263 | return listBoxId ? document.getElementById(listBoxId) : null; |
| 264 | } |
| 265 | |
| 266 | /** |
| 267 | * Returns the select's sections if present. |
no test coverage detected