Eu criei um TabPanel dentro de uma janela. Eu poderia usar autoScroll:true
com a janela, mas não com o TabPanel. Eu preciso dele para trabalhar com TabPanel então quando eu rolar para baixo, lista de guias não vai subir e desaparecer.
TabPanel:
var sections = Ext.createWidget('tabpanel', {
id: 'mytabpanel',
title: 'UM',
activeTab: 3,
closable: true,
autoScroll: true, // not working
//defaults:{ autoScroll:true }, //not working
items: [
{
Janela (recipiente TabPanel):
var window = new Ext.Window({
id: 'item1',
closable: true,
floating: true,
collapsible: true,
width: 900,
height: 600,
autoScroll: true, //working
items : mytabpanel
}).show();