-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
Description
Hi,
I have the following events hash:
events: {
'blur input': 'someHandler
}
someHandler is never called> I think this may be because NativeView is relying on the Event propagating up the tree and checking whether selectors match on the eventTarget. Is the issue that InputEvents such as blur, input or change don't get propagated up to non-input nodes?
Would a better way to attach events be to query the view for the selector and use addEventListener on the Elements that returns rather than the Views root element?