Can I get children of current node by xpath
I'm trying to get children of current node by using xpath in APP source edit mode!
Can it be done in this way?
I'm trying to get children of current node by using xpath in APP source edit mode!
Can it be done in this way?
APP source edit mode = APP Javascript FOM 
The way to access the current node during formatting is: formatting.currentXMLNode
Once you have an XML Node object you can run XPath against it: myNode.evaluateXPath("something")
To access child elements in XPath: child::*
So putting it all together: formatting.currentXMLNode.evaluateXPath("child::*")
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.