Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    new Ext.Viewport({
        layout : 'fit',
        title  : 'Tab',
        items  : {
            xtype           : 'tabpanel',
            activeTab       : 0,
            id              : 'myTPanel',
            enableTabScroll : true,
            resizeTabs      : true,
            minTabWidth     : 75,
            items           : [
                {
                    title : 'our first tab'
                }
            ]
        }
    });
    
    
});
 
asdf