I don't have any issues populating the datagrid when my external xml
file is very basic. for example:
<users>
<user>
<username>Joe</username>
<useremail>[EMAIL PROTECTED]</useremail>
</user>
<user>
<username>Maggie</username>
<useremail>[EMAIL PROTECTED]</useremail>
</user>
</users>
But when I have many nested elements and attributes - I can never
access the elements deeper within the xml.
Can anyone put up a bare-bones example of populating a datagrid with
something like the following from an xml file.
<users>
<user>
<username gender="male">Joe</username>
<useremail>[EMAIL PROTECTED]</useremail>
<location id="001">
<city>Bedford</city>
<state>MA</state>
</location>
</user>
<user>
<username gender="female">Maggie</username>
<useremail>[EMAIL PROTECTED]</useremail>
<location id="002">
<city>Lexington</city>
<state>MA</state>
</location>
</user>
</users>
Any help is appreciated.
Thanks,
Joe
--
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
| Web site design development | Computer software development | Software design and development |
| Macromedia flex | Software development best practice |
YAHOO! GROUPS LINKS
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

