You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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=(
The text was updated successfully, but these errors were encountered:
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=(
The text was updated successfully, but these errors were encountered: