mysticav
15 Jan 2012, 7:52 PM
If you add a tabpanel component inside a window component, Tab scrolling wont work in Internet Explorer, at least in version 9.
Can somebody please check this ?
Ext.define('MyApp.view.window.Temp', {
extend : 'Ext.window.Window',
alias : 'widget.window_temp',
width : 450,
modal : true,
height : 510,
title : 'Testing',
items : [
{
xtype : 'tabpanel',
items : [
{
xtype:'form',
title:'aaaaaaaaaaaaa'
},
{
xtype:'form',
title:'bbbbbbbbbbbbb'
},
{
xtype:'form',
title:'ccccccccccccc'
},
{
xtype:'form',
title:'dddddddddddddd'
},
{
xtype:'form',
title:'fffffffffffffff'
},
{
xtype:'form',
title:'gggggggggggggg'
}
]
}
]
});
Can somebody please check this ?
Ext.define('MyApp.view.window.Temp', {
extend : 'Ext.window.Window',
alias : 'widget.window_temp',
width : 450,
modal : true,
height : 510,
title : 'Testing',
items : [
{
xtype : 'tabpanel',
items : [
{
xtype:'form',
title:'aaaaaaaaaaaaa'
},
{
xtype:'form',
title:'bbbbbbbbbbbbb'
},
{
xtype:'form',
title:'ccccccccccccc'
},
{
xtype:'form',
title:'dddddddddddddd'
},
{
xtype:'form',
title:'fffffffffffffff'
},
{
xtype:'form',
title:'gggggggggggggg'
}
]
}
]
});