We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bindable Class VO's don't hit the setters for certain data types. For example, Boolean type will return "false" on undefined preventing us from setting the private member to false. See #2 at http://livedocs.adobe.com/flex/3/html/help.html?content=Part4_data_access_1.html
We can fix this by explicitly adding Bindable event in these special cases:
[Bindable("propertyChanged")] public function get isAdmin():Boolean { return _isAdmin; }
public function set isAdmin(value:Boolean):void { _isAdmin = value; this.dispatchEvent(new Event("propertyChanged")); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bindable Class VO's don't hit the setters for certain data types. For example, Boolean type will return "false" on undefined preventing us from setting the private member to false. See #2 at http://livedocs.adobe.com/flex/3/html/help.html?content=Part4_data_access_1.html
We can fix this by explicitly adding Bindable event in these special cases:
[Bindable("propertyChanged")]
public function get isAdmin():Boolean
{
return _isAdmin;
}
public function set isAdmin(value:Boolean):void
{
_isAdmin = value;
this.dispatchEvent(new Event("propertyChanged"));
}
The text was updated successfully, but these errors were encountered: