Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    var simpleTab = {
        title : 'My first tab',
        html  : 'This is my first tab!'
    }
    
    var tabPanel = new Ext.TabPanel({
        activeTab         : 0,
        id                : 'myTPanel',
        enableTabScroll   : true,
        items             : [
            simpleTab,
            simpleTab,
            simpleTab,
        ]
    });
    
    new Ext.Window({
        height : 300,
        width  : 400,
        layout : 'fit',
        items  : tabPanel
    }).show();
    
});
 
asdf