I've got an XML List
with information something like:
<locations>
   <default>
       <location address1="123 Street" locationid="1234" ... />
    </default>
    ....

I have it declared in my Model as an XMLLIst: public var DALocationsXML:XMLList;

and in one of my views, I'm trying to load the data into a List..
dataProvider="{MyModel.getInstance().DALocationsXML.default}"

I don't have an error but I have a warning telling me
Data binding will not be able to detect changes to XMLList "default",
need an XML instance.

How can I knock this warning out?

Reply via email to