He creado un TabPanel dentro de una ventana. Podría usar autoScroll:true
con la ventana, pero no con la TabPanel. Lo necesito para trabajar con TabPanel así que cuando me desplazo hacia abajo, la lista de las pestañas no se va a subir y 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: [
{
Ventana (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();