- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
You can access the dataDom by using the prefix to your xml structure xfa.datasets.data....your data structure goes here..If you are unsure of the structure I like to add a large multiline field (for debugging urposes only) and on the docReady event I use the command this.rawValue = xfa.datasets.data.saveXML("pretty"). This will dump the datadom onto that field and I can see the structure that I need to follow. To retrieve the actual value from the dom ....you path to the node you want and use the value property to retrieve the value of that node.
Hope that helps
Paul