Threaded View
-
7 Oct 2012 9:27 AM #1
Disable contextmenu on document but leave it for components
Disable contextmenu on document but leave it for components
ExtJs 4 is not a framework ... is a never-ending battle!

I won a battle:
This solution stop right click events on document browser but leave it for ExtJs ones.Code:Ext.onReady(function() {...Ext.application({... launch: function() {... Ext.getDoc().on('contextmenu', function(e,t,eOpts) { if (e.preventDefault) { e.preventDefault(); } else { e.returnValue = false; } return false; });
I can right-click on TreeMenuItems, panel desktop and so on.
ciao!


Reply With Quote