This property is an array of [[RelateNavItem]] starting at 0 and representing the child objects of this object.
Optional
options: stringThis function finds a child element with a specific label. The type parameter is a single character String value indicating what type of element to look for. The possibilities are "f" for form, "r" for merge-report, "w" for wizard and "_" for folder. If the seachAll parameter is true
, then the function also searches the children of the children, and their children until all sub-elements of the current object have been searched. It does this via a depth traversal, meaning that if two elements have the label that is being searched for, it will choose an element with a smaller 'level' value over an element with a higher 'level' value. If the elements are at the same level, it will choose the one that comes first.
Optional
value: stringOptional
fullTree: booleanThis function works precisely like [[findByLabel]] but searches by name instead of label.
Optional
value: stringOptional
fullTree: booleanLookup bluestep.js Merge Report by using custom lookup property.
Lookup Fixed Merge Report by using custom lookup property.
Lookup folder by using custom lookup property.
Lookup form by using custom lookup property.
Lookup RelateScript Merge Report by using custom lookup property.
Lookup wizard by using custom lookup property.
This property is another [[RelateNavItem]] representing the parent of this object. Will be empty if [[isRoot]] is true.
General purpose searching using the call back function search
to identify the child.
Optional
value: stringOptional
fullTree: boolean
The resulting object of calling [[BaseRecord.nav]]
Example: ```javascript TODO ```