i've got a VO that's declared bindable in the class itself:
[Bindable] public class SampleData {...}
as the data changes all the flex components (charts, datagrids, etc.) using the
VO update fine. however we have one 3rd party component that seems to be
oblivious to the changing data. it only works if we declare the VO bindable in
the main app:
[Bindable] public var sampleData:SampleData=new SampleData();
shouldn't the bindable in the class be enough? or am i missing something about
how bindings work?
thanks.