The removeChild() method removes the specified child module from the current module hierarchy. The childModule must exist and be a child of the caller.
Note: The removed child module is orphaned.
removeChild( childModule )
|
args |
Object |
Splunk.Module object of the child to be removed. |
Undefined
this.withEachChild( function(child) {
this.removeChild(child);
return false;
});