Adobe Livecycle Designer Data Binding Use Name
I'm pretty new to adobe forms development. I'm using LiveCycle Designer to create a PDF that is bound to an XML document. My.NET solution will generate an XML structure that is placed in an XDP form that has the PDF form template embedded in it. When the form is opened, the data binding, will bind to the form/subforms to create rows, etc.
Wpf Data Binding
I have that portion working, but I'm not sure how to reference the current xml node while the binding is occurring so that I can grab values needed for formatting logic, performing calculations etc. I'm using JavaScript during the initialize events. Can anyone point me to a good resource for this or provide a sample?Thanks for your help!Some additional detail:I have an xml structure like so: 111Test2Test2I have a subform bound to DeviceType which repeats vertically. Then a subform bound to Record which is repeats vertically. Then a subform bound to Columns repeating horizontally (creating table columns) and then within that a repeating table bound to Column with a Row containing a text box bound to Value.I'm performing calculations during the Row.Value::initialize event, but not sure how to access the underlying XML node and traverse up.For example, if I want to concat Value and ColumnId, what would be the javascript for that? Or if I wanted to concat Value with its parent Record Order?I've tried this on the Row Value initialize event to concat Value and ColumnId but it didn't work: this.rawValue = this.rawValue + this.parent.dataNode.resolveNode('ColumnId').value.