Ext.onReady(function () {
var tab = new Ext.TabPanel({
renderTo: Ext.getBody(),
height: 500
})
tab.add({
title: "tab1",
html:"content"
})
tab.add({
id:Ext.id(),
title:"tab2",
closable:true
})
tab.activate(0);
})