I'm using a custom jQuery UI Plugin in my ember.js app, and would like to react on a custom jQuery event in order to update values of the controller/model.
What I found: A question asked for the same purpose here on stackoverflow gives as answer to use jQuery.bind()/[jQuery.on() in the the didInsertElement-function of the view. The use of jQuery.on() in the didInsertElement-Method of the view causes the problem that this inside the event Handler is bound to the Dom-Element it occurred on.
So ideally there would be a way to get other jQuery events to work like the ones that ember brings with it: Calling the matching method names on the Ember.View- Instance.
Do you know any way to get custom jQuery events to work? Possibly using an Mixin for creating the appropriate methods on the view or the like?