I'd like to run a function after an Ember view is added to the DOM but can't figure out how.

Here's my use-case: I'd like to use jQuery UI sortable to allow sorting. My app has multiple multi-level nested lists that would be hell to manually code sorting, but jQuery UI does a pretty good job.

I've tried overriding the render() method, but (now obviously) that gets called too late since it's result later gets into the DOM.

I've tried setting a ready() method on my view, but that event doesn't seem to be called.

So, any advice on how to run a function? Or, do I need to (re)implement what jquery sortable does using events on views?

link|improve this question

feedback

1 Answer

up vote 11 down vote accepted

You need to override didInsertElement as it's "Called when the element of the view has been inserted into the DOM. Override this function to do any set up that requires an element in the document body."

Reference: https://github.com/emberjs/ember.js/blob/master/packages/ember-views/lib/views/view.js

link|improve this answer
3  
Within your override of didInsertElement, you can reference this.$() to get a handle to the jquery wrapper for the DOM element. – Luke Melia Jan 17 at 14:11
2  
Marc: You might find this article useful as well. It helped me back in the day when I had to get JUI and SC2 working. NOTE: Some of the api might have changed since this article was written so it might not be cut and paste code. http://yehudakatz.com/2011/06/11/using-sproutcore-2-0-with-jquery-ui/ – Roy Daniels Jan 17 at 14:20
Thanks a lot! That this answer plus those two comments really helped me figure this out. I'm impressed with the EmberJS community support so far. – Marc Hughes Jan 17 at 15:56
I'm glad I found this. Thanks @LukeMelia, I was wondering how to get a reference to the DOM element. – Calvin L Jan 19 at 0:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.