मैं एक खिड़की के अंदर एक tabpanel बनाया। मैं इस्तेमाल कर सकते हैं autoScroll:true
खिड़की के साथ, लेकिन tabpanel के साथ नहीं। मैं इसे tabpanel के साथ काम करने, इसलिए जब मैं नीचे स्क्रॉल, टैब की सूची ऊपर नहीं जाएगी और गायब हो जाते हैं की जरूरत है।
Tabpanel:
var sections = Ext.createWidget('tabpanel', {
id: 'mytabpanel',
title: 'UM',
activeTab: 3,
closable: true,
autoScroll: true, // not working
//defaults:{ autoScroll:true }, //not working
items: [
{
विंडो (tabpanel कंटेनर):
var window = new Ext.Window({
id: 'item1',
closable: true,
floating: true,
collapsible: true,
width: 900,
height: 600,
autoScroll: true, //working
items : mytabpanel
}).show();