Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    var myWin = new Ext.Window({
       height     : 300,
       width      : 300,
       title      : 'A window with a container layout',
       autoScroll : true,
       items      : [],
       tbar : [
          {
             text    : 'Add child',
             handler : function() {
                var numItems = myWin.items.getCount() + 1;
                myWin.add({
                   title       : 'Child number ' + numItems,
                   height      : 60,
                   frame       : true,
                   collapsible : true,
                   collapsed   : true,
                   html        : 'asdf'
                });
                myWin.doLayout();
             }
          }
       ]
    });
    
    myWin.show();
});
 
asdf