In flex 4.5 (in actionscript), I'm using BindingUtils.bindProperty method in order to bind one of my view property to a model property (I have my reasons for using this method and not the standard flex binding, let's not get in to that):

BindingUtils.bindProperty(radioBtnGroupClientAssociation, 'selectedValue', presentationModel.questionnaireModel.questionnaire.account, 'clientAssociation');
BindingUtils.bindProperty( presentationModel.questionnaireModel.questionnaire.account, 'clientAssociation', radioBtnGroupClientAssociation, 'selectedValue');

So those 2 lines actually gave me a bedirectional binding - which is good. I executed those 2 lines in the creation-complete event handler of my view and everything works just fine. My question is - How can I know at this stage that my model (the binded object - 'account') in not null and was actualy already constructed?

Important to know: My models and views are all created and managed by parsley. I guess my question is - how can I know the initialization order of objects managed by parsley?

In my code it is clearly ok cause I'n not craching, but is there a way to know that I'm safe?

Thanks in advance Yogi

link|improve this question

44% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.