2016-09-20 73 views

回答

4

你正在寻找的配置是在Ext.tab.Bar类,它被称为activateOnFocus。

这里的修改,以avoi导航箭头键

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' 
     } 
    }] 
}); 
+0

非常感谢你的标签面板的例子! – Massimo