Newer Version Available
Working with a Component Body in JavaScript
These are useful and common patterns for working with a
component’s body in JavaScript.
Replace a Component's Body
In these examples, cmp is a reference to a component in your JavaScript code. It’s usually easy to get a reference to a component in JavaScript code. Remember that the body attribute is an array of components, so you can use the JavaScript Array methods on it.
To replace the current value of a component’s body with another component:
Clear a Component's Body
To clear or empty the current value of a component’s body:
Append a Component to a Component's Body
To append a newCmp component to a component’s body:
Prepend a Component to a Component's Body
To prepend a newCmp component to a component’s body:
Remove a Component from a Component's Body
To remove an indexed entry from a component’s body: