ウィンドウ内にタブパネルを作成しました。autoScroll:true
ウィンドウでは使用できましたが、タブパネルでは使用できませんでした。タブパネルで動作するために必要なので、下にスクロールしてもタブのリストが上に表示されたり消えたりすることはありません。
タブパネル:
var sections = Ext.createWidget('tabpanel', {
id: 'mytabpanel',
title: 'UM',
activeTab: 3,
closable: true,
autoScroll: true, // not working
//defaults:{ autoScroll:true }, //not working
items: [
{
ウィンドウ(タブパネルコンテナ):
var window = new Ext.Window({
id: 'item1',
closable: true,
floating: true,
collapsible: true,
width: 900,
height: 600,
autoScroll: true, //working
items : mytabpanel
}).show();