Hi,
When reading a xml with a simple nested structure like:
<books>
<book>
<title>One Title</title>
<authors>
<author>
<name>First author's name</name>
</author>
<author>
<name>Second author's name</name>
</author>
</authors>
</book>
</books>
It's easy to read the title field. But, how can you get the authors
xml segment (at least a String with that part) ? It seems as simple as
declaring:
new ObjectFieldDef( "authors", "book/authors )
in the RecordDef, but this returns null.
I'm tried with many. many combinations of selectors and xpath
expressions and I always get a null. Do you know if is there a way to
load that segment of the XML ?
Any comment would be really appreciated,
Juan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"GWT-Ext Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---