Is there a way to bind a form in the designer to an XML element using an attribute value as criteria? This is a very basic construct in XPath and I'd be hard pressed to believe the form designer cannot do this. For example:
<bookstore>
<book lang="eng">
<title>Harry Potter</title>
<price>29.99</price>
</book>
<book lang="sp">
<title>Learning XML</title>
<price>39.95</price>
</book>
</bookstore>
I wish to bind to only the the book node with a lang attribute of "eng".
The simple xpath reference would be: /bookstore/book[@lang='eng']
Thanks for any help anyone can provide. I'm new to the LiveCycle Designer
Jordon