Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function() {
    var btnHandler = function(btn) {
        btn.el.frame();
    }
    var menuItems = [
        {
            text    : 'Add',
        },
        {
            text    : 'Remove',
        }
    ];
    new Ext.Button({
        renderTo : Ext.getBody(),
        text     : 'With Menu',
        handler  : btnHandler,
        menu     : menuItems
    });
});