2016-09-20 93 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