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
Has anyone successfully integrated this with Paypal's Bootstrap Accessibility plugin? That plugin makes dropdowns more accessible, but I am finding that dropdowns with bootstrap select do not display correctly once an option has been selected EXAMPLE.
Bootstrap-select is missing required ARIA roles. It adds role=menu on the<ul> but it should also be adding role="menuitem" to the <a> and role="presentation" to the <li>. Bootstrap accessibility adds this normally to dropdowns, but the DOM structure for bootstrap-select is different.
The text was updated successfully, but these errors were encountered:
Has anyone successfully integrated this with Paypal's Bootstrap Accessibility plugin? That plugin makes dropdowns more accessible, but I am finding that dropdowns with bootstrap select do not display correctly once an option has been selected EXAMPLE.
Bootstrap-select is missing required ARIA roles. It adds role=menu on the
<ul>
but it should also be addingrole="menuitem"
to the<a>
androle="presentation"
to the<li>
. Bootstrap accessibility adds this normally to dropdowns, but the DOM structure for bootstrap-select is different.The text was updated successfully, but these errors were encountered: