I开发者_JAVA技巧s it possible to disable the context menu in qooxdoo?
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);
精彩评论