Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
var myButton = new Ext.Button({
  text    : 'hide me',
  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