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?