We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
(part of UI.View)
Returns: void
Parameters: aView (member of UI.View)
Adds aView to the view's list of subViews. Once done, aView is a child of the current view, and this is represented in the DOM as well.
aView
var aView = new UI.View(); aView.init(); var bView = new UI.Label(); bView.init(); aView.addSubView (bView);
0.3 Introduced; Docs Valid.