Constructor
new module:br/presenter/node/NodeList(pPresentationNodes, fNodeClass)
NodeList containing the given
module:br/presenter/node/PresentationNode instances.
Extends:
Parameters:
| Name | Type | Description |
|---|---|---|
pPresentationNodes |
Array | The initial array of module:br/presenter/node/PresentationNode instances |
fNodeClass |
function | (optional) The class/interface that all nodes in this list should be an instance of |
Extends
Methods
-
addChangeListener(fCallback, bNotifyImmediately)
-
Convenience method that allows listeners to be added for objects that do not themselves implement
module:br/presenter/node/NodeListListener.Listeners added using
addChangeListener()will only be notified whenmodule:br/presenter/node/NodeListListener#onNodeListChangedfires, and will not be notified if any of the othermodule:br/presenter/node/NodeListListenercall-backs fire. The advantage to using this method is that objects can choose to listen to call-back events on multiple node lists.Parameters:
Name Type Description fCallbackfunction The call-back that will be invoked each time the property changes. bNotifyImmediatelyboolean (optional) Whether to invoke the listener immediately for the current value. -
addListener(oListener, bNotifyImmediately)
-
Add a
module:br/presenter/node/NodeListListenerthat will be notified each time the node list is updated.Parameters:
Name Type Description oListenermodule:br/presenter/node/NodeListListener The listener to be added. bNotifyImmediatelyboolean Whether to invoke the listener immediately using the current node list. -
getPath()
-
Returns the path that would be required to bind this node from the view.
This method is used internally, but might also be useful in allowing the dynamic construction of views for arbitrary presentation models.
-
getPresentationNodesArray()
-
Returns the list of
module:br/presenter/node/PresentationNodeinstances as an array. -
getTemplateForNode(oPresentationNode)
-
Returns the name of the template used to render the given presentation node.
Parameters:
Name Type Description oPresentationNodemodule:br/presenter/node/PresentationNode The presentation node being queried. -
nodes(sNodeName, vProperties)
-
Returns all nested nodes matching the search criteria reachable from this node.
Care is taken not to search up the tree in cyclic presentation models (where some of the presentation nodes have back references to presentation nodes higher up in the tree).
Parameters:
Name Type Description sNodeNameString The name of nodes to match. vPropertiesObject Only nodes having this array or map of properties will be matched. - Inherited From:
- Source:
- See:
-
properties(sPropertyName, vValue)
-
Returns all nested properties matching the search criteria reachable from this node.
Care is taken not to search up the tree in cyclic presentation models (where some of the presentation nodes have back references to presentation nodes higher up in the tree).
Parameters:
Name Type Description sPropertyNameString The name of properties to match. vValueObject The value of properties to match. - Inherited From:
- Source:
- See:
-
removeAllListeners()
-
Remove all previously added
module:br/presenter/node/NodeListListenerinstances. -
removeChildListeners()
-
Removes all listeners attached to the properties contained by this
PresentationNode, and any nodes it contains. -
removeListener(oListener)
-
Remove a previously added
module:br/presenter/node/NodeListListener.Parameters:
Name Type Description oListenermodule:br/presenter/node/NodeListListener The listener being removed. -
updateList(pPresentationNodes)
-
Updates the node list with a new array of
module:br/presenter/node/PresentationNodeinstances.Care must be taken to always invoke this method when the contents of the node list change. The array returned by
#getPresentationNodesArrayshould be treated as being immutable.Parameters:
Name Type Description pPresentationNodesArray The new list of module:br/presenter/node/PresentationNodeinstances.