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(),
        iconCls    : 'icon-add',
        text       : ' iconAlign : "left"',
        arrowAlign : 'bottom', // top, left, right
        iconAlign  : 'left',
        handler    : btnHandler,
        menu       : menuItems
    }); 
});