om.DomNode.getParent

Returns the parent DOM node.

Syntax

getParent()
  RETURNING result om.DomNode

Usage

The getParent() method returns the parent DOM node of the current node.

If the current node is the root node, the method returns NULL.

DEFINE parent, current om.DomNode
...
LET parent = current.getParent()