[FIX] Added Bindable metas to text and html getters on TextInput. Fixes mxml bindings for these properties. Issue reported by PKumar in users mailing list.
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/5d52dc68 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/5d52dc68 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/5d52dc68 Branch: refs/heads/refactor-sprite Commit: 5d52dc685c74ca6b2efe055ac8f96363c8873973 Parents: 241d202 Author: greg-dove <[email protected]> Authored: Mon Sep 19 08:33:52 2016 +1200 Committer: greg-dove <[email protected]> Committed: Mon Sep 19 08:33:52 2016 +1200 ---------------------------------------------------------------------- .../projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5d52dc68/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as index 70ad9a2..c8df45d 100644 --- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as @@ -74,6 +74,7 @@ package org.apache.flex.html * @productversion FlexJS 0.0 * @flexjsignorecoercion HTMLInputElement */ + [Bindable(event="change")] public function get text():String { COMPILE::SWF @@ -114,6 +115,7 @@ package org.apache.flex.html * @productversion FlexJS 0.0 * @flexjsignorecoercion HTMLInputElement */ + [Bindable(event="change")] public function get html():String { COMPILE::SWF
