Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function() {
    var btnHandler = function(btn) {
        alert('alert');
    }
    var menuItems = [
        {
            text    : 'Add',
            iconCls : 'icon-add'
        },
        {
            text    : 'Remove',
            iconCls : 'icon-delete'
        }
    ];
    new Ext.SplitButton({
        renderTo : Ext.getBody(),
        text     : 'With Menu',
        handler  : btnHandler,
        menu     : menuItems
    });   
});