Ext JS JavaScript DHTML



Hello World Window






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