I am creating an ember.js application that also communicates with some other jQuery plugins. I have some form fields that I need to call the jQuery plugin against how the view is rendered. I tried to connect to didInsertElement , but apparently the values ββfor the fields of the associated form are not assigned when pasting. Is there a callback for when the view is fully displayed or when the bindings are initialized?
t
MyView: Ember.View.extend
and
{{view Ember.TextField valueBinding="someField" class="some-class"}}
Does not work because .some-class values ββare not set yet.
I do not want to use setTimeout and create race conditions.
source share