not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
619 B

  1. /**
  2. An onyx-styled input control. In addition to the features of
  3. <a href="#enyo.Input">enyo.Input</a>, onyx.Input has a *defaultFocus*
  4. property that can be set to true to focus the input when it's rendered.
  5. Only one input should be set as the *defaultFocus*.
  6. Typically, an onyx.Input is placed inside an
  7. <a href="#onyx.InputDecorator">onyx.InputDecorator</a>, which provides
  8. styling, e.g.:
  9. {kind: "onyx.InputDecorator", components: [
  10. {kind: "onyx.Input", placeholder: "Enter some text...", onchange: "inputChange"}
  11. ]}
  12. */
  13. enyo.kind({
  14. name: "onyx.Input",
  15. kind: "enyo.Input",
  16. classes: "onyx-input"
  17. });