nodes Returns a list of all child objects of the current object. Note: This property is read only. Syntax Reference_Syntax.nodes Values Type Values Object A list of XML Form Object Model objects. Applies to tree class Version XFA 2.1 Examples JavaScript Subform1.nodes; // Single line example // This example displays the names of the children of Subform1 var oNodes = this.nodes; var nodesLength = oNodes.length; for (var i = 0; i < nodesLength; i++) { xfa.host.messageBox(oNodes.item(i).name) } FormCalc Subform1.nodes // Single line example // This example displays the names of the children of Subform1 var oNodes = Subform1.nodes var nodesLength = oNodes.length; for (var i = 0; i < nodesLength; i++) { xfa.host.messageBox(oNodes.item(i).name) }