As Alex mentioned, binding expressions require bindable objects. The plain Object elements in your ArrayCollection are not bindable, so you will get binding warnings if you attempt to bind to properties (e.g. name) on those objects.
To make your Object's bindable, wrap them with ObjectProxy's. bindableObject = new ObjectProxy( sourceObject ); --- In [email protected], "luvfotography" <ygro...@...> wrote: > > Hi, I'm getting this message, > I know it's not much to go on, but what could be the cause? > I have an array of objects of type 'myclass' and > create an arraycollection for a datagrid. > > The warning just pops up in the console multiple times. > > warning: unable to bind to property 'name' on class 'Object' (class is not an > IEventDispatcher) > > thanks, >

