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-569518541 > If my VO has `[Bindable]` on top of it `ValueChangeEvent.VALUE_CHANGE` is not being dispatched, so listener `onDataChange `is not called. > > ``` > [Bindable] > public class SomeVO > { > } > ``` > > If VO has `[Bindable]` on top on every property everything is working fine and `onDataChange` has been called. > > ``` > public class SomeVO > { > public function SomeVO() > { > } > > private var _itemQuantity:int = 1; > > [Bindable] > public function get itemQuantity():int > { > return _itemQuantity; > } > > public function set itemQuantity(value:int):void > { > _itemQuantity = value; > } > } > ``` > > Note that this change on VO won't fix original issue - I checked that. That part still remains as issue.
---------------------------------------------------------------- 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
