Object

outwatch.dom.InputAttributes

InputType

Related Doc: package InputAttributes

Permalink

object InputType

The type of control to display. The default type is text, if this attribute is not specified.

MDN

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InputType
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. lazy val button: Attribute

    Permalink

    A push button with no default behavior.

    A push button with no default behavior.

    MDN

  6. lazy val checkbox: Attribute

    Permalink

    A check box.

    A check box. You must use the value attribute to define the value submitted by this item. Use the checked attribute to indicate whether this item is selected. You can also use the indeterminate attribute (which can only be set programmatically) to indicate that the checkbox is in an indeterminate state (on most platforms, this draws a horizontal line across the checkbox).

    MDN

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. lazy val color: Attribute

    Permalink

    A control for specifying a color.

    A control for specifying a color. A color picker's UI has no required features other than accepting simple colors as text.

    MDN HTML5

  9. lazy val date: Attribute

    Permalink

    A control for entering a date (year, month, and day, with no time).

    A control for entering a date (year, month, and day, with no time).

    MDN HTML5

  10. lazy val datetime: Attribute

    Permalink

    A control for entering a date and time (hour, minute, second, and fraction of a second) based on UTC time zone.

    A control for entering a date and time (hour, minute, second, and fraction of a second) based on UTC time zone. This feature has been removed from WHATWG HTML.

    MDN HTML5

  11. lazy val datetimeLocal: Attribute

    Permalink

    A control for entering a date and time, with no time zone.

    A control for entering a date and time, with no time zone.

    MDN HTML5

  12. lazy val email: Attribute

    Permalink

    A field for editing an e-mail address.

    A field for editing an e-mail address. The input value is validated to contain either the empty string or a single valid e-mail address before submitting. The :valid and :invalid CSS pseudo-classes are applied as appropriate.

    MDN HTML5

  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. lazy val file: Attribute

    Permalink

    A control that lets the user select a file.

    A control that lets the user select a file. Use the accept attribute to define the types of files that the control can select.

    MDN

  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. lazy val hidden: Attribute

    Permalink

    A control that is not displayed but whose value is submitted to the server.

  20. lazy val image: Attribute

    Permalink

    A graphical submit button.

    A graphical submit button. You must use the src attribute to define the source of the image and the alt attribute to define alternative text. You can use the height and width attributes to define the size of the image in pixels.

    MDN

  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. lazy val month: Attribute

    Permalink

    A control for entering a month and year, with no time zone.

    A control for entering a month and year, with no time zone.

    MDN HTML5

  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. lazy val number: Attribute

    Permalink

    A control for entering a floating point number.

    A control for entering a floating point number.

    MDN HTML5

  27. lazy val password: Attribute

    Permalink

    A single-line text field whose value is obscured.

    A single-line text field whose value is obscured. Use the maxlength attribute to specify the maximum length of the value that can be entered.

    MDN

  28. lazy val radio: Attribute

    Permalink

    A radio button.

    A radio button. You must use the value attribute to define the value submitted by this item. Use the checked attribute to indicate whether this item is selected by default. Radio buttons that have the same value for the name attribute are in the same "radio button group". Only one radio button in a group can be selected at a time.

    MDN

  29. lazy val range: Attribute

    Permalink

    A control for entering a number whose exact value is not important.

    A control for entering a number whose exact value is not important. This type control uses the following default values if the corresponding attributes are not specified: min: 0 max: 100 value: min + (max - min) / 2, or min if max is less than min step: 1

    MDN HTML5

  30. lazy val reset: Attribute

    Permalink

    A button that resets the contents of the form to default values.

    A button that resets the contents of the form to default values.

    MDN

  31. lazy val search: Attribute

    Permalink

    A single-line text field for entering search strings.

    A single-line text field for entering search strings. Line-breaks are automatically removed from the input value.

    MDN HTML5

  32. lazy val submit: Attribute

    Permalink

    A button that submits the form.

    A button that submits the form.

    MDN

  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. lazy val tel: Attribute

    Permalink

    A control for entering a telephone number.

    A control for entering a telephone number. Line-breaks are automatically removed from the input value, but no other syntax is enforced. You can use attributes such as pattern and maxlength to restrict values entered in the control. The :valid and :invalid CSS pseudo-classes are applied as appropriate.

    MDN HTML5

  35. lazy val text: Attribute

    Permalink

    A single-line text field.

    A single-line text field. Line-breaks are automatically removed from the input value.

    MDN

  36. lazy val time: Attribute

    Permalink

    A control for entering a time value with no time zone.

    A control for entering a time value with no time zone.

    MDN HTML5

  37. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  38. lazy val url: Attribute

    Permalink

    A field for editing a URL.

    A field for editing a URL. The input value is validated to contain either the empty string or a valid absolute URL before submitting. You can use attributes such as pattern and maxlength to restrict values entered in the control. The :valid and :invalid CSS pseudo-classes are applied as appropriate.

    MDN HTML5

  39. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. lazy val week: Attribute

    Permalink

    A control for entering a date consisting of a week-year number and a week number with no time zone.

    A control for entering a date consisting of a week-year number and a week number with no time zone.

    MDN HTML5

Inherited from AnyRef

Inherited from Any

Ungrouped