0

var tabs = new Ext.TabPanel({ region:'center', activeTab:0, id: 'main-column', margins: '10 10 10 0', enableTabScroll:false, resizeTabs:true, minTabWidth: 80, defaultType: 'iframepanel', defaults:{ closable:true, loadMask:{hideOnReady :false,msg:'Loading...'}, autoScroll : true, autoShow:true } });

Mithlesh Singh
  • 139
  • 3
  • 12

1 Answers1

0

The default xtype of child Components to create in this Container when a child item is specified as a raw configuration object.

Analogous to

defaults: {
    xtype: 'iframepanel'
}

Read more in the ExtJS 2 Docs.

Darin Kolev
  • 3,401
  • 13
  • 31
  • 46