Ext JS JavaScript DHTML



Hello World Window







Ext.onReady(function() {
    
    var myButton = new Ext.Button({
      text    : 'hide me',
        split: true,
        width:90,
        height:90,
        iconAlign: 'top',
        iconCls: 'add24',
        defaultType: 'splitbutton',
    
      handler : function() {
        alert("asdf");
      } 
    });
    
    myPanel = new Ext.Panel({
      width    : 400,
      height   : 400,
      title    : 'Title me',
      frame    : true,
      renderTo : Ext.getBody(), 
      items    :  myButton 
    });
});
 
asdf