Skip to content
kerrishotts edited this page Apr 1, 2013 · 1 revision

(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.

Usage

var aView = new UI.View();
aView.init();
var bView = new UI.Label();
bView.init();
aView.addSubView (bView);

Version

0.3 Introduced; Docs Valid.

Clone this wiki locally