ParamQuery grid support forum
General Category => Suggest new features => Topic started by: Autoflow on July 25, 2019, 08:14:11 pm
-
Hi!
Is it possible to implement a preContext callback which makes it possible to
show the native browser context instead, ie. when ctrlKey is pressed?
Best regards,
Alexander
-
Alexander
It's already supported/ possible.
Browser context menu can be displayed instead of grid context menu when ctrl key is pressed by checking for evt.ctrlKey in contextMenu.items callback.
if( evt.ctrlKey ){
return;
}