PDA

View Full Version : Right-click menu on Resizable?



danko
21 May 2007, 7:43 AM
Can I get an example of a "contextmenu" event fireing from a Ext.Resizable, or from Ext.Element?

(I'd like to get the right-click event the same way I get it from Ext.tree.TreeNode)

Thanks!

danko
21 May 2007, 11:57 PM
OK, I figured this on out.
But how to remove the original browser context menu that shows on the top of the generated menu?

evant
22 May 2007, 12:19 AM
Try stopEvent:



item.on('click', function(obj, e)
{
e.stopEvent();
});

danko
23 May 2007, 6:17 AM
Thanks!