Kendo Angular按钮溢出Tabindex可访问性问题
我正在使用kendo-toolbar和这些配置:
<kendo-toolbar [overflow]="true" [popupSettings]="popupSettings">
弹出式设置为:
popupSettings = {
appendTo: viewContainerRef,
animate: false,
width: 192
};
每当我调整页面大小并且出现溢出按钮时,它都无法使用键盘选项卡。 主工具栏组件具有tabindex =“ 0”
,并且溢出按钮具有tabindex =“ - 1”
,但是一旦我尝试使用键盘选项卡,工具栏的Tabindex更改为-1,溢出按钮Tabindex停留-1。
这是Kendo-Toolbar的已知问题吗?有解决方法吗?
I am using Kendo-toolbar with these configurations:
<kendo-toolbar [overflow]="true" [popupSettings]="popupSettings">
while popupSettings are:
popupSettings = {
appendTo: viewContainerRef,
animate: false,
width: 192
};
Whenever I resize my page and the overflow button appear, it is inaccessible with keyboard tabs.
The main toolbar component has tabindex="0"
, and the overflow button has tabindex="-1"
, but as soon as I try to reach it with keyboard tabs the toolbar's tabindex changes to -1 and the overflow button tabindex stays -1.
Is it a known issue with Kendo-toolbar? Are there any workarounds?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过更新
kendo-angular-toolbar
从4.1.1
更新为4.1.3
来修复它。I fixed it by updating the
kendo-angular-toolbar
from4.1.1
to4.1.3