JS needed bindable metadata
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/78f3ec5d Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/78f3ec5d Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/78f3ec5d Branch: refs/heads/tlf Commit: 78f3ec5d4ac9414dc9c4239aaa300cf24ecfbf2a Parents: be69e26 Author: Alex Harui <[email protected]> Authored: Thu Jun 8 09:36:41 2017 -0700 Committer: Alex Harui <[email protected]> Committed: Thu Jun 8 10:20:57 2017 -0700 ---------------------------------------------------------------------- .../projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f3ec5d/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as index d8e8568..eb1afbe 100644 --- a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as +++ b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as @@ -185,6 +185,7 @@ package org.apache.flex.html _label.childNodes.item(1).nodeValue = value; } + [Bindable("change")] public function get selected():Boolean { return (_icon.element as HTMLInputElement).checked;
