Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
var childPnl1 = {                                                    
   frame  : true,
   height : 50,
   html   : 'My First Child Panel',
   title  : 'First'
}
var childPnl2 = {                                                     
   xtype  : 'panel',
   width  : 150,
   html   : 'Second child',
   title  : 'Second'
}
var myWin = new Ext.Window({                                          
   height     : 600,
   width      : 600,
   title      : 'A window with a container layout',
   autoScroll : true,                                                
   items      : [                                                     
      childPnl1,
      childPnl2
   ],
});
myWin.show();
});
 
asdf