ares-ide
Version:
A browser-based code editor and UI designer for Enyo 2 projects
19 lines (16 loc) • 562 B
JavaScript
/**
_onyx.TextArea_ is an Onyx-styled TextArea control, derived from
[enyo.TextArea](#enyo.TextArea). Typically, an _onyx.TextArea_ is placed
inside an [onyx.InputDecorator](#onyx.InputDecorator), which provides styling,
e.g.:
{kind: "onyx.InputDecorator", components: [
{kind: "onyx.TextArea", onchange: "inputChange"}
]}
For more information, see the documentation on [Text
Fields](building-apps/controls/text-fields.html) in the Enyo Developer Guide.
*/
enyo.kind({
name: "onyx.TextArea",
kind: "enyo.TextArea",
classes: "onyx-textarea"
});