Phone API Reference - UI Core - window - remove
remove
Description
Removes one or more widgets from a group.
Basic Example:Â
exampleObj.remove(widget[, widget...]);Â |
Parameters
Name | Required | Type | Default | Description |
---|---|---|---|---|
widget | Yes | widget | Â | Widget to act on. |
Examples
Remove widgets from a variety of objects.
window.remove(alertWidget);
group.remove(titleWidget);
scroll.remove(imgWidget1, imgWidget2); |
Â