Seems like setting auto update to false in injection meta tag is not working, it still tries to update it even without calling "bindings.invalidate(this, 'user')" =(
[code]
[Inject(source="proxy.user", bind='true', auto='false')]
public function set user(user:User):void{
if(user) //had to add this to avoid error if user == null
topPanel.user = user
}
[/code]
setter is called few times with "null" passed in before i manually invalidate 'user' field=(
Seems like setting auto update to false in injection meta tag is not working, it still tries to update it even without calling "bindings.invalidate(this, 'user')" =(
[code]
[Inject(source="proxy.user", bind='true', auto='false')]
public function set user(user:User):void{
if(user) //had to add this to avoid error if user == null
topPanel.user = user
}
[/code]
setter is called few times with "null" passed in before i manually invalidate 'user' field=(