You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2018/09/01 17:48:43 UTC

[GitHub] carlosrovira opened a new issue #282: Class instantiated at runtime doesn't get beads defined for its own class, gets parent beads

carlosrovira opened a new issue #282: Class instantiated at runtime doesn't get beads defined for its own class, gets parent beads
URL: https://github.com/apache/royale-asjs/issues/282
 
 
   Hi Alex,
   
   I have this code:
   
   ```
   private var _list:ComboBoxList;
   ```
   and
   ```
   var popUpClass:Class = ValuesManager.valuesImpl.getValue(_strand, "iPopUp") as Class;
   _list = new popUpClass() as ComboBoxList;
   ```
   
   ComboBoxList extends List
   
   At runtime ComboBoxList is filled with beads defined for List instead with beads defined in CSS for ComboBoxList.
   
   For example the IBeadView in List is ListView and in ComboBoxList is ComboBoxListView.
   At runtime the browser node tree reports that view bead for ComboBoxList is ListView instead of ComboBoxListView
   
   I think this is a bug, could you take a look?
   
   thanks

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services