views:

56

answers:

1

Is it possible to disable the context menu in qooxdoo?

+1  A: 

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 Weiß
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