Node
The parent object for all LiveCycle Mosaic DOM nodes.
Defined in: mosaicDOM.js.
| Constructor Attributes | Constructor Name and Description |
|---|---|
|
Node(o)
Constructor.
|
| Method Attributes | Method Name and Description |
|---|---|
|
display()
Sets the current node - one of tile, panel, or view - to display in the application.
|
|
|
Returns an array of child nodes of the current node.
|
|
|
Indicates whether the current node is currently displayed in the application.
|
|
|
Gets the ID of the current node.
|
|
|
Returns the label of this object.
|
|
|
Returns the name of the node from the XML definition of the application.
|
|
|
Returns the type value of the node.
|
|
|
Returns the direct parent node of the current node within the application.
|
|
|
setNodeLabel(l)
Sets the label of this object
|
Detail
Node(o)
Constructor. Note: This constructor is for internal use only. Do not use.
- Parameters:
- o
- DOM object being wrapped from Flex
Method Detail
display()
Sets the current node - one of tile, panel, or view - to display in the application. In cases where the node is contained withing a view or panel, the view or panel will also display.
getChildrenNodes(f)
Returns an array of child nodes of the current node.
Note: You can supply a type value to which to cast the array of child nodes.
- Parameters:
- f
- The type to use for casting. If you do not specify a value, the default is type "Node".
- Returns:
- An array of child nodes.
getDisplayed()
Indicates whether the current node is currently displayed in the application.
- Returns:
- True if the node - one of tile, panel, or view - is currently displayed in the application, and false if the node is hidden.
getNodeId()
Gets the ID of the current node.
- Returns:
- The string value of the node ID.
getNodeLabel()
Returns the label of this object.
- Returns:
- The label of this object.
getNodeName()
Returns the name of the node from the XML definition of the application.
- Returns:
- The name of this object.
getNodeType()
Returns the type value of the node.
- Returns:
- The type value.
getParentNode()
Returns the direct parent node of the current node within the application.
- Returns:
- The parent DOM object of the current object.
setNodeLabel(l)
Sets the label of this object
- Parameters:
- l
- The label to be set for this object

