Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    Ext.get('div1').on('contextmenu', function(eventObj, elRef) {
        eventObj.stopEvent();
        if (!this.ctxMenu) {
            this.ctxMenu = new Ext.menu.Menu({
                items : [{
                    text : "A"
                },{
                    text : "B"
                },{
                    text : "C"
                }]
            });
        }
        this.ctxMenu.show(elRef);
    });
    
    
});
 
asdf