Add a child component to a parent's container.
container(String): Component container to which the child will be added.component(String): Component to be added.options(Object):success(Function): Success callback.error(Function): Error callback.index(Number): Insert index for the container. The default is0.render(Boolean): Whether or not to render the component (only applicable on the client). Default isfalse.
Removes a child component from a parent's container.
child(Object): The child component to be removed.options(Object):success(Function): Success callback.error(Function): Error callback.
Removes component instance.
options(Object):success(Function): Success callback.error(Function): Error callback.
Callback for parent when a child is removed.
child(Object): The child component to be removed.options(Object):success(Function): Success callback.error(Function): Error callback.