|
Hmm, you might need to implement mx.data.IManaged
yourself instead of relying on IManaged. IManaged extends IUID (you must have
a string property uid) and IEventDispatcher (must be an event dispatcher). You
will then need to implement any managed property as follows (I haven’t
tested this, it’s based on reading the generated actionscript for a
[Managed] class): import mx.data.utils.Managed; private var _test1:int;
[Bindable(event="propertyChange")] public function get test1():int { _test1 =
mx.data.utils.Managed.getProperty(this, "test1", _test1); return _test1; } public function set
test1(value:int):void { var oldValue:int = this._ test1; _test1 = value; mx.data.utils.Managed.setProperty(this,
"test1", oldValue, _test1); } I have no guarantees, but see how it goes? Matt From: We're
using FDS on our project, and we're using a single DataStore -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
YAHOO! GROUPS LINKS
__,_._,___ |
- RE: [flexcoders] FDS, VOs, and ignoring client-side propertie... Matt Chotin
- Re: [flexcoders] FDS, VOs, and ignoring client-side prop... Jim Laing
- RE: [flexcoders] FDS, VOs, and ignoring client-side ... Matt Chotin
- Re: [flexcoders] FDS, VOs, and ignoring client-s... Jim Laing
- RE: [flexcoders] FDS, VOs, and ignoring clie... Matt Chotin
- RE: [flexcoders] FDS, VOs, and ignoring... Jeff Vroom
- Re: [flexcoders] FDS, VOs, and igno... Jim Laing
- RE: [flexcoders] FDS, VOs, and ... Seth Hodgson
- Re: [flexcoders] FDS, VOs, and ... Jim Laing

