Hi I have a text field which I would like to bind to a dynamic object.
<mx:TextInput id="ti4" text="{selectedObj['someProp']}" valueCommit="{selectedObj['someProp'] = ti4.text}" x="1011.5" y="835"/>
If the property doesn't exist I get a reference error - Is there any way to fail a little more gracefully?
Any ideas much appreciated.