3

Is it possible to disable the context menu in qooxdoo?

Martin Wittemann
  • 2,109
  • 1
  • 12
  • 14

1 Answers1

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
  • 1
    It'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