Class Ember.TextArea
publicThe internal class used to create textarea element when the {{textarea}}
helper is used.
See Ember.Templates.helpers.textarea for usage details.
Layout and LayoutName properties
Because HTML textarea
elements do not contain inner HTML the layout
and
layoutName
properties will not be applied. See Ember.View's
layout section for more information.
didInsertElement public
Inherited from Ember.View packages/ember-views/lib/views/view.js:1166
Called when the element of the view has been inserted into the DOM or after the view was re-rendered. Override this function to do any set up that requires an element in the document body.
When a view has children, didInsertElement will be called on the child view(s) first, bubbling upwards through the hierarchy.
willClearRender public
Inherited from Ember.View packages/ember-views/lib/views/view.js:1179
Called when the view is about to rerender, but before anything has been torn down. This is a good opportunity to tear down any manual observers you have installed based on the DOM state
willDestroyElement public
Inherited from Ember.View packages/ember-views/lib/views/view.js:1212
Called when the element of the view is going to be destroyed. Override this function to do any teardown that requires an element, like removing event listeners.
Please note: any property changes made during this event will have no effect on object observers.
willInsertElement public
Inherited from Ember.View packages/ember-views/lib/views/view.js:1158
Called when a view is going to insert an element into the DOM.