Is it possible to disable the context menu in qooxdoo?
Asked
Active
Viewed 457 times
1 Answers
3
Every qooxdoo widget has a nativeContextMenu property. You can set it to false on the application root to prevent the browser context menu:
qx.core.Init.getApplication().getRoot().setNativeContextMenu(false);

Jonathan Weiss
- 664
- 1
- 6
- 9
-
1It's usually less advantageous to link to "current" URLs on qooxdoo's web site, as they will change over time. A link like demo.qooxdoo.org/1.0/... will remain stable. – ThomasH Jan 17 '10 at 19:09