Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function() {
    var btnHandler = function(btn) {
       alert('clicked');
    }
    var menuItems = [
        {
            text    : 'Add',
        },
        {
            text    : 'Remove',
        }
    ];
    new Ext.Button({
        renderTo  : Ext.getBody(),
        iconCls   : 'icon-add',
        text      : 'iconAlign : "left"',
        arrowAlign : 'bottom',
        iconAlign : 'top',
        handler   : btnHandler,
        menu      : menuItems
    });
});