Object

com.dispalt.vdom.HtmlTags

input

Related Doc: package HtmlTags

Permalink

object input extends ReactTagOf[Input]

The HTML element <input> is used to create interactive controls for web-based forms in order to accept data from the user. How an <input> works varies considerably depending on the value of its type attribute.

Linear Supertypes
ReactTagOf[Input], DomFrag, Frag, TagMod, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. input
  2. ReactTagOf
  3. DomFrag
  4. Frag
  5. TagMod
  6. AnyRef
  7. 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 +(that: TagMod): TagMod

    Permalink
    Definition Classes
    TagMod
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. def apply(xs: TagMod*): ReactTagOf[Input]

    Permalink
    Definition Classes
    ReactTagOf
  6. final def applyTo(b: Builder): Unit

    Permalink

    Applies this modifier to the specified Builder, such that when rendering is complete the effect of adding this modifier can be seen.

    Applies this modifier to the specified Builder, such that when rendering is complete the effect of adding this modifier can be seen.

    Definition Classes
    DomFragTagMod
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def button: ReactTagOf[Input]

    Permalink

    A push button with no default behavior.

  9. lazy val checkbox: ReactTagOf[Input]

    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 to indicate that the checkbox is in an indeterminate state (on most platforms, this draws a horizontal line across the checkbox).

  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def color: ReactTagOf[Input]

    Permalink

    [HTML5] A control for specifying a color.

    [HTML5] A control for specifying a color. A color picker's UI has no required features other than accepting simple colors as text (more info).

  12. final def compose(that: TagMod): TagMod

    Permalink
    Definition Classes
    TagMod
  13. def copy(tag: String = this.tag, modifiers: List[Seq[TagMod]] = this.modifiers, namespace: Namespace = this.namespace): ReactTagOf[Input]

    Permalink
    Definition Classes
    ReactTagOf
  14. def date: ReactTagOf[Input]

    Permalink

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

  15. def datetime: ReactTagOf[Input]

    Permalink

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

  16. def datetimeLocal: ReactTagOf[Input]

    Permalink

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

  17. def email: ReactTagOf[Input]

    Permalink

    [HTML5] A field for editing an e-mail address.

    [HTML5] 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.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. def file: ReactTagOf[Input]

    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.

  21. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. def hidden: ReactTagOf[Input]

    Permalink

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

  25. def image: ReactTagOf[Input]

    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.

  26. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  27. val modifiers: List[Seq[TagMod]]

    Permalink
    Definition Classes
    ReactTagOf
  28. def month: ReactTagOf[Input]

    Permalink

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

  29. val namespace: Namespace

    Permalink
    Definition Classes
    ReactTagOf
  30. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  33. def number: ReactTagOf[Input]

    Permalink

    [HTML5] A control for entering a floating point number.

  34. def password: ReactTagOf[Input]

    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.

  35. def radio: ReactTagOf[Input]

    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.

  36. def range: ReactTagOf[Input]

    Permalink

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

    [HTML5] 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:

  37. def render: ReactElement

    Permalink
    Definition Classes
    ReactTagOfFrag
  38. def reset: ReactTagOf[Input]

    Permalink

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

  39. def search: ReactTagOf[Input]

    Permalink

    [HTML5] A single-line text field for entering search strings; line-breaks are automatically removed from the input value.

  40. def submit: ReactTagOf[Input]

    Permalink

    A button that submits the form.

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

    Permalink
    Definition Classes
    AnyRef
  42. val tag: String

    Permalink
    Definition Classes
    ReactTagOf
  43. def tel: ReactTagOf[Input]

    Permalink

    [HTML5] A control for entering a telephone number; line-breaks are automatically removed from the input value, but no other syntax is enforced.

    [HTML5] 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.

  44. val text: ReactTagOf[Input]

    Permalink

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

  45. def time: ReactTagOf[Input]

    Permalink

    [HTML5] A control for entering a time value with no time zone.

  46. def toString(): String

    Permalink
    Definition Classes
    ReactTagOf → AnyRef → Any
  47. def url: ReactTagOf[Input]

    Permalink

    [HTML5] A field for editing a URL.

    [HTML5] A field for editing a URL. The input value is validated to contain either the empty string or a valid absolute URL before submitting. Line-breaks and leading or trailing whitespace are automatically removed from the input value. 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.

  48. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. def week: ReactTagOf[Input]

    Permalink

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

  52. def withType(t: String): ReactTagOf[Input]

    Permalink

    Returns a <input type="{t}" />

Inherited from ReactTagOf[Input]

Inherited from DomFrag

Inherited from Frag

Inherited from TagMod

Inherited from AnyRef

Inherited from Any

Ungrouped