Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function() {
    var genericHandler = function(menuItem) {
        Ext.MessageBox.alert('', 'Your choice is ' + menuItem.text);
    }
    
    var pasteAction = new Ext.Action({
        text    : 'Paste',
        iconCls : 'paste',
        handler : genericHandler
    });
    
    var editMenuBtn = {
        text : 'Edit',
        menu : [
            pasteAction
        ]
    }
    
    new Ext.Window({
        width        : 300,
        height       : 200,
        tbar         : [
            editMenuBtn,
            '->',
            pasteAction
        ]
    }).show();
});