如何在Ext JS中使用箭头键禁用tabpanel导航?

时间:2016-09-20 13:18:14

标签: javascript extjs extjs5

当标签处于焦点位置时,可以使用箭头键()在标签之间导航。我想禁用此行为。

示例选项卡面板: http://examples.sencha.com/extjs/6.0.2/examples/kitchensink/#basic-tabs

2 个答案:

答案 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'
    }
}]

});