Ext JS JavaScript DHTML



Hello World Window




.icon-accept {
    background-image: url(accept.png) !important;
}



Ext.onReady(function() {
    var genericHandler = function(menuItem) {
        Ext.MessageBox.alert('', 'Your choice is ' + menuItem.text);
    }
    var colorAndDateHandler = function(menuItem, choice) {
        Ext.MessageBox.alert('', 'Your choice is ' + choice);
    }
    var colorCheckMenu = {
        text    : 'Check',
        id      : 'colorMenu',
        menu    : {
            defaults : {
                checked      : false,
                group        : 'colorChkGroup',
                checkHandler : genericHandler
            },
            items : [
                {
                    text         : 'Fatal',
                    color        : '#ff00ff'
                },
                {
                    text         : 'Critical',
                    color        : 'red'
                },
                {
                    text         : 'Nominal',
                    color        : 'green'
                },
                {
                    text         : 'Unknown',
                    color        : 'yellow'
                }
            ]
    
        }
    }
    
    var menu = new Ext.menu.Menu({
        id        : 'myMenu',
        items     : colorCheckMenu,
        listeners : {
            'beforehide' : function() {
                return false;
            }
        }
    
    });
    menu.showAt([100,100]);
});