2016-09-20 1 views

Antwort

4

Die Konfigurations Sie suchen, in der Ext.tab.Bar Klasse ist, und es ist activateOnFocus genannt.

Hier ist das Registerfeld Beispiel Avoi Navigation mit Pfeiltasten

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

Sie sehr viel geändert Dank! – Massimo

Verwandte Themen