简体   繁体   中英

How to do this XML declaration in Flex4

I have a dataProvider that's defined with mx:XML like this.

<mx:dataProvider>
   <mx:XML format="e4x">
      <root label="All Items">   
         <morning label="Evening" type="check" />
         <evening label="Evening" type="check" />
         <night label="Night" type="check" />
      </root>
   </mx:XML>
</mx:dataProvider>

This doesn't seem to be a valid option anymore with the new spark architecture. Can someone suggest how this can be done? I thought if I put in Declarations, it would work, but doesn't seem to be the case.

Try:

<fx:XML>
...
</fx:XML>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM