Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    
    new Ext.Viewport({
        layout : 'border',
        items  : [
            {
                height : 75,
                region : 'north',
                title  : 'North'
            },
            {
                width  : 150,
                region : 'west',
                title  : 'west'
            },
            {
                region : 'center',
                title  : 'center'
            }
        ]
     });
    
});
 
asdf