I can create context menu for tree and attach to \'contextmenu\' event. Code:
contextMenu = new Ext.menu.Menu({ items: [{ text: \'Edit\', iconCls: \'ed
For extjs4, add this in your grid:
listeners: { itemclick: function(view, record, item, index, e, options){ menuContext.showAt(e.xy); } }
With the same menu context as Alan provided above.