didn't get its flexjs_wrapper set.  SimpleList seems to be extending List which 
doesn't seem right to me though


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/f3dd4614
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/f3dd4614
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/f3dd4614

Branch: refs/heads/feature/amf
Commit: f3dd4614f65fd0816f75c960b00151ea34b58272
Parents: 8e1b694
Author: Alex Harui <[email protected]>
Authored: Mon Sep 4 09:26:03 2017 -0700
Committer: Alex Harui <[email protected]>
Committed: Mon Sep 4 09:27:07 2017 -0700

----------------------------------------------------------------------
 .../projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/f3dd4614/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as
----------------------------------------------------------------------
diff --git 
a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as 
b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as
index 0d254e5..b71b7cd 100644
--- a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as
+++ b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/SimpleList.as
@@ -58,6 +58,7 @@ package org.apache.flex.html
         override protected function createElement():WrappedHTMLElement
         {
             element = document.createElement('select') as WrappedHTMLElement;
+            element.flexjs_wrapper = this;
             (element as HTMLSelectElement).size = 5;
             goog.events.listen(element, 'change',
                 changeHandler);

Reply via email to