Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    
    var myButton = new Ext.Button({
      text    : 'hide me',
      menu : {items: [{text:'Menu Item 1'},{text:'Menu Item 2'},{text:'Menu Item 3'}]},
      handler : function() {
        myPanel.el.switchOff({
          callback : function() {
            myPanel.el.slideIn.defer(500, myPanel.el, []);
          }
        });
      } 
    });
    
    myPanel = new Ext.Panel({
      width    : 200,
      height   : 100,
      title    : 'Title me',
      frame    : true,
      renderTo : Ext.getBody(), 
      items    :  myButton 
    });
});
 
asdf