I am unable to find the event.stop method (to stop event propagation) in any of the ESRI typescript definition files. Does anyone know where this is defined or how I can use this method in my typescript implementation if it isn't defined anywhere?
Thanks.
Solved! Go to Solution.
I'm going to guess it's because dojo/_base/event is deprecated.
The recommendation is to call event.preventDefault() and event.stopPropagation() natively.
I'm going to guess it's because dojo/_base/event is deprecated.
The recommendation is to call event.preventDefault() and event.stopPropagation() natively.