当标签处于焦点位置时,可以使用箭头键(→,←)在标签之间导航。我想禁用此行为。
示例选项卡面板: http://examples.sencha.com/extjs/6.0.2/examples/kitchensink/#basic-tabs
答案 0 :(得分:4)
您要查找的配置位于Ext.tab.Bar类中,它名为activateOnFocus。
此处修改了标签面板示例以避免使用箭头键导航
Ext.create('Ext.tab.Panel', {
width: 400,
height: 400,
renderTo: document.body,
tabBar: {
activateOnFocus: false
},
items: [{
title: 'Foo'
}, {
title: 'Bar',
tabConfig: {
title: 'Custom Title',
tooltip: 'A button tooltip'
}
}]
});
答案 1 :(得分:0)
这对我有用!
Ext.create('Ext.tab.Panel', {
width: 400,
height: 400,
renderTo: document.body,
tabBar: {
defaults: {
flex: 1
}
},
items: [{
title: 'Foo'
}, {
title: 'Bar',
tabConfig: {
title: 'Custom Title',
tooltip: 'A button tooltip'
}
}]
});