Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    var embeddedTabPanel = {
        title     : 'My second tab',
        closable  : true,
        xtype     : 'tabpanel',
        activeTab : 0,
        items     : [
            {
                title : 'Inner tab 1'
            },
            {
                title : 'Inner tab 2'
            }
        ]
    }
    
    var tabPanel = new Ext.TabPanel({
        activeTab         : 0,
        id                : 'myTPanel',
        enableTabScroll   : true,
        items             : [
            embeddedTabPanel,
            embeddedTabPanel,
            embeddedTabPanel,
        ]
    });
    
    new Ext.Window({
        height : 300,
        width  : 400,
        layout : 'fit',
        items  : tabPanel
    }).show();
    
});
 
asdf