You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Propagation should be stoppable via the usual means (stopPropagation, returning false). If it doesn't work, then it might be a bug.
Note that for delegated handlers, your event will have already bubbled from the target element (the actual element clicked) to the delegate element (the element holding the event handler). Stopping propagation from a delegate handler will only stop it from the delegate element upwards.
It seems like returning false within an iterative section with event delegation on also suppresses native js events for all nested elements, which are commonly used in decorators, thus making them stop working.
This is unexpected too and does not match the behavior of regular event propagation, when delegated events are turned off.
Is there any way to stop event propagation with event delegation in iterative sections on?
The text was updated successfully, but these errors were encountered: