I would like to trigger a non-bubbling, non-cancellable event. Is this possible? Or do I always have to fire stopPropagation within event handlers.
I tried:
someobj.trigger({ type: 'some_event_type', bubbles: false, cancellable:false });
to no avail. Seems like there should be a way to do it, but I haven’t found it yet …..
You can try .triggerHandler. It: