Lines Matching defs:View
16 The View class imposes little structure and provides only minimal functionality
20 As of YUI 3.5.0, View allows ad-hoc attributes to be specified at instantiation
21 time, so you don't need to subclass `Y.View` to add custom attributes. Just pass
24 var view = new Y.View({foo: 'bar'});
27 @class View
33 function View() {
34 View.superclass.constructor.apply(this, arguments);
37 Y.View = Y.extend(View, Y.Base, {
69 var view = new Y.View({
113 properties passed to View's constructor. This makes it possible to
115 `Y.View` and declare all those attributes first.
147 Destroys this View, detaching any DOM events and optionally also destroying
155 @param {Boolean} [options.remove=false] If `true`, this View's container
171 return View.superclass.destroy.call(this);
402 View's constructor.