piotrzarzycki21 commented on issue #639: Binding doesn't work in Jewel List 
item renderers using VO
URL: https://github.com/apache/royale-asjs/issues/639#issuecomment-569614585
 
 
   Final thoughts about that. It looks like we do have working Binding in item 
renderers, but understanding  trough available examples is not necessary 
helpful. It depends of what we would like to observe in our itemrenderer.
   1) Observe only setup of `data` property do:
   
   ```
   [Bindable("dataChange")]
   public function get someVO():SomeVO
   {
        return data as SomeVO;
   }
   ```
   
   2) Observe how properties in value object is changing do:
   ```
   [Bindable("valueChange")]
   public function get someVO():SomeVO
   {
         return data as SomeVO;
   }
   ```
   
   Note that even if we decided that there is no issue with that, there is 
still bug -> 
https://github.com/apache/royale-asjs/issues/639#issuecomment-569518541
   

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


With regards,
Apache Git Services

Reply via email to