How to disable browser context menu in qooxdoo?

Is it possible to disable the context menu in qooxdoo?

+3
source share
1 answer

Each qooxdoo widget has a nativeContextMenu property . You can set it to false in the root of the application to prevent the browser context menu:

qx.core.Init.getApplication().getRoot().setNativeContextMenu(false);
+3
source

Source: https://habr.com/ru/post/1728574/


All Articles