Class

pl.metastack.metaweb.tag

Button

Related Doc: package tag

Permalink

class Button extends state.Tag with HTMLTag

The HTML <button> Element represents a clickable button.

Linear Supertypes
HTMLTag, state.Tag, Children, state.Node, Tag, Container, Node, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Button
  2. HTMLTag
  3. Tag
  4. Children
  5. Node
  6. Tag
  7. Container
  8. Node
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Button()

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++=(nodes: Seq[Node]): Unit

    Permalink
    Definition Classes
    Tag
  4. def +=(node: Node): Unit

    Permalink
    Definition Classes
    Tag
  5. def -=(node: Node): Unit

    Permalink
    Definition Classes
    Tag
  6. def :=(node: Node): Unit

    Permalink
    Definition Classes
    Tag
  7. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. val _attributes: Dict[String, Var[Any]]

    Permalink
    Attributes
    protected
    Definition Classes
    Tag
  9. def accesskey: StateChannel[String]

    Permalink

    Provides a hint for generating a keyboard shortcut for the current element.

    Provides a hint for generating a keyboard shortcut for the current element. This attribute consists of a space-separated list of characters. The browser should use the first one that exists on the computer keyboard layout.

    Definition Classes
    HTMLTag
  10. def append(node: Node): Unit

    Permalink
    Definition Classes
    Tag
  11. def appendAll(nodes: Seq[Node]): Unit

    Permalink
    Definition Classes
    Tag
  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def attribute(attribute: String): Var[Any]

    Permalink
    Definition Classes
    Tag
  14. def attributes: scala.Predef.Map[String, Any]

    Permalink
    Definition Classes
    TagTag
  15. def autocomplete: StateChannel[String]

    Permalink

    The use of this attribute on a <button> is nonstandard and Firefox-specific.

    The use of this attribute on a <button> is nonstandard and Firefox-specific. By default, unlike other browsers, Firefox persists the dynamic disabled state of a <button> across page loads. Setting the value of this attribute to off (i.e. autocomplete="off") disables this feature. See bug 654072.

  16. def autofocus: StateChannel[Boolean]

    Permalink

    This Boolean attribute lets you specify that the button should have input focus when the page loads, unless the user overrides it, for example by typing in a different control.

    This Boolean attribute lets you specify that the button should have input focus when the page loads, unless the user overrides it, for example by typing in a different control. Only one form-associated element in a document can have this attribute specified.

  17. def byId[T <: Tag](id: String): T

    Permalink
    Definition Classes
    Tag
  18. def byIdOpt[T <: Tag](id: String): scala.Option[T]

    Permalink
    Definition Classes
    Tag
  19. def byTag[T <: Tag](tagName: String): T

    Permalink
    Definition Classes
    Tag
  20. def byTagOpt[T <: Tag](tag: String): scala.Option[T]

    Permalink
    Definition Classes
    Tag
  21. def children: Seq[Node]

    Permalink
    Definition Classes
    TagTagContainer
  22. def class: StateChannel[String]

    Permalink

    Is a space-separated list of the classes of the element.

    Is a space-separated list of the classes of the element. Classes allows CSS and JavaScript to select and access specific elements via the class selectors or functions like the method Document.getElementsByClassName().

    Definition Classes
    HTMLTag
  23. def clearChildren(): Unit

    Permalink
    Definition Classes
    Tag
  24. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. def contenteditable: StateChannel[String]

    Permalink

    Is an enumerated attribute indicating if the element should be editable by the user.

    Is an enumerated attribute indicating if the element should be editable by the user. If so, the browser modifies its widget to allow editing. The attribute must take one of the following values:

    • true or the empty string, which indicates that the element must be editable;
    • false, which indicates that the element must not be editable.
    Definition Classes
    HTMLTag
  26. def contextmenu: StateChannel[String]

    Permalink

    Is the id of an <menu> to use as the contextual menu for this element.

    Is the id of an <menu> to use as the contextual menu for this element.

    Definition Classes
    HTMLTag
  27. def dir: StateChannel[String]

    Permalink

    Is an enumerated attribute indicating the directionality of the element's text.

    Is an enumerated attribute indicating the directionality of the element's text. It can have the following values:

    • ltr, which means left to right and is to be used for languages that are written from the left to the right (like English);
    • rtl, which means right to left and is to be used for languages that are written from the right to the left (like Arabic);
    • auto, which let the user agent decides. It uses a basic algorithm as it parses the characters inside the element until it finds a character with a strong directionality, then apply that directionality to the whole element.
    Definition Classes
    HTMLTag
  28. def disabled: StateChannel[Boolean]

    Permalink

    This Boolean attribute indicates that the user cannot interact with the button.

    This Boolean attribute indicates that the user cannot interact with the button. If this attribute is not specified, the button inherits its setting from the containing element, for example <fieldset>; if there is no containing element with the disabled attribute set, then the button is enabled. Firefox will, unlike other browsers, by default, persist the dynamic disabled state of a <button> across page loads. Use the autocomplete attribute to control this feature.

  29. def domNode: scala.Option[Any]

    Permalink
    Definition Classes
    Tag
  30. def draggable: StateChannel[String]

    Permalink

    Is an enumerated attribute indicating whether the element can be dragged, using the Drag and Drop API.

    Is an enumerated attribute indicating whether the element can be dragged, using the Drag and Drop API. It can have the following values:

    • true, which indicates that the element may be dragged
    • false, which indicates that the element may not be dragged.
    Definition Classes
    HTMLTag
  31. def dropzone: StateChannel[String]

    Permalink

    Is an enumerated attribute indicating what types of content can be dropped on an element, using the Drag and Drop API.

    Is an enumerated attribute indicating what types of content can be dropped on an element, using the Drag and Drop API. It can have the following values:

    • copy, which indicates that dropping will create a copy of the element that was dragged
    • move, which indicates that the element that was dragged will be moved to this new location.
    • link, will create a link to the dragged data.
    Definition Classes
    HTMLTag
  32. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  34. val eventProvider: Provider[(String, Seq[Any]), Unit]

    Permalink
    Definition Classes
    Tag
  35. def events: scala.Predef.Map[String, (Any) ⇒ Unit]

    Permalink
    Definition Classes
    TagTag
  36. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  37. def find(f: (Node) ⇒ Boolean): scala.Option[Node]

    Permalink
    Definition Classes
    Container
  38. def form: StateChannel[state.Node]

    Permalink

    The form element that the button is associated with (its form owner).

    The form element that the button is associated with (its form owner). The value of the attribute must be the id attribute of a <form> element in the same document. If this attribute is not specified, the <button> element must be a descendant of a form element. This attribute enables you to place <button> elements anywhere within a document, not just as descendants of their <form> elements.

  39. def formaction: StateChannel[String]

    Permalink

    The URI of a program that processes the information submitted by the button.

    The URI of a program that processes the information submitted by the button. If specified, it overrides the action attribute of the button's form owner.

  40. def formenctype: StateChannel[String]

    Permalink

    If the button is a submit button, this attribute specifies the type of content that is used to submit the form to the server.

    If the button is a submit button, this attribute specifies the type of content that is used to submit the form to the server. Possible values are:

    • application/x-www-form-urlencoded: The default value if the attribute is not specified.
    • multipart/form-data: Use this value if you are using an <input> element with the type attribute set to file. - text/plain If this attribute is specified, it overrides the enctype attribute of the button's form owner.
  41. def formmethod: StateChannel[String]

    Permalink

    If the button is a submit button, this attribute specifies the HTTP method that the browser uses to submit the form.

    If the button is a submit button, this attribute specifies the HTTP method that the browser uses to submit the form. Possible values are:

    • post: The data from the form is included in the body of the form and is sent to the server.
    • get: The data from the form are appended to the form attribute URI, with a '?' as a separator, and the resulting URI is sent to the server. Use this method when the form has no side-effects and contains only ASCII characters.

    If specified, this attribute overrides the method attribute of the button's form owner.

  42. def formnovalidate: StateChannel[String]

    Permalink

    If the button is a submit button, this Boolean attribute specifies that the form is not to be validated when it is submitted.

    If the button is a submit button, this Boolean attribute specifies that the form is not to be validated when it is submitted. If this attribute is specified, it overrides the novalidate attribute of the button's form owner.

  43. def formtarget: StateChannel[String]

    Permalink

    If the button is a submit button, this attribute is a name or keyword indicating where to display the response that is received after submitting the form.

    If the button is a submit button, this attribute is a name or keyword indicating where to display the response that is received after submitting the form. This is a name of, or keyword for, a browsing context (for example, tab, window, or inline frame). If this attribute is specified, it overrides the target attribute of the button's form owner. The following keywords have special meanings:

    • _self: Load the response into the same browsing context as the current one. This value is the default if the attribute is not specified.
    • _blank: Load the response into a new unnamed browsing context.
    • _parent: Load the response into the parent browsing context of the current one. If there is no parent, this option behaves the same way as _self.
    • _top: Load the response into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as _self.
  44. def getAttribute(attr: String): scala.Option[Any]

    Permalink
    Definition Classes
    TagTag
  45. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  47. def hidden: StateChannel[String]

    Permalink

    Is a Boolean attribute indicates that the element is not yet, or is no longer, relevant.

    Is a Boolean attribute indicates that the element is not yet, or is no longer, relevant. For example, it can be used to hide elements of the page that can't be used until the login process has been completed. The browser won't render such elements. This attribute must not be used to hide content that could legitimately be shown.

    Definition Classes
    HTMLTag
  48. def id: StateChannel[String]

    Permalink

    Defines a unique identifier (ID) which must be unique in the whole document.

    Defines a unique identifier (ID) which must be unique in the whole document. Its purpose is to identify the element when linking (using a fragment identifier), scripting, or styling (with CSS).

    Definition Classes
    HTMLTag
  49. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  50. def itemid: StateChannel[String]

    Permalink

    Definition Classes
    HTMLTag
  51. def itemprop: StateChannel[String]

    Permalink

    Definition Classes
    HTMLTag
  52. def itemref: StateChannel[String]

    Permalink

    Definition Classes
    HTMLTag
  53. def itemscope: StateChannel[String]

    Permalink

    Definition Classes
    HTMLTag
  54. def itemtype: StateChannel[String]

    Permalink

    These attributes are related to the WHATWG HTML Microdata feature.

    These attributes are related to the WHATWG HTML Microdata feature.

    Definition Classes
    HTMLTag
  55. def lang: StateChannel[String]

    Permalink

    Participates in defining the language of the element, the language that non-editable elements are written in or the language that editable elements should be written in.

    Participates in defining the language of the element, the language that non-editable elements are written in or the language that editable elements should be written in. The tag contains one single entry value in the format defines in the Tags for Identifying Languages (BCP47) IETF document. xml:lang has priority over it.

    Definition Classes
    HTMLTag
  56. def name: StateChannel[String]

    Permalink

    The name of the button, which is submitted with the form data.

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

    Permalink
    Definition Classes
    AnyRef
  58. val nodeProvider: Provider[Unit, Any]

    Permalink
    Definition Classes
    Tag
  59. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  61. def prepend(node: Node): Unit

    Permalink
    Definition Classes
    Tag
  62. def remove(node: Node): Unit

    Permalink
    Definition Classes
    Tag
  63. def removeEvent(event: String): Unit

    Permalink
    Definition Classes
    Tag
  64. def replace(reference: Node, node: Node): Unit

    Permalink
    Definition Classes
    Tag
  65. def set(node: Node): Unit

    Permalink
    Definition Classes
    Tag
  66. def setAttribute[T](attr: String, value: T): Unit

    Permalink
    Definition Classes
    Tag
  67. def setChildren(nodes: Seq[Node]): Unit

    Permalink
    Definition Classes
    Tag
  68. def setEvent(event: String, f: (Any) ⇒ Unit): Unit

    Permalink
    Definition Classes
    Tag
  69. def spellcheck: StateChannel[String]

    Permalink

    Is an enumerated attribute defines whether the element may be checked for spelling errors.

    Is an enumerated attribute defines whether the element may be checked for spelling errors. It may have the following values:

    • true, which indicates that the element should be, if possible, checked for spelling errors;
    • false, which indicates that the element should not be checked for spelling errors.
    Definition Classes
    HTMLTag
  70. def style: StateChannel[String]

    Permalink

    Contains CSS styling declarations to be applied to the element.

    Contains CSS styling declarations to be applied to the element. Note that it is recommended for styles to be defined in a separate file or files. This attribute and the <style> element have mainly the purpose of allowing for quick styling, for example for testing purposes.

    Definition Classes
    HTMLTag
  71. def subscribe(node: ReadChannel[Node]): ReadChannel[Unit]

    Permalink
    Definition Classes
    Tag
  72. def subscribeChildren(list: DeltaBuffer[Node]): ReadChannel[Unit]

    Permalink
    Definition Classes
    Tag
  73. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  74. def tabindex: StateChannel[String]

    Permalink

    Is an integer attribute indicates if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position.

    Is an integer attribute indicates if the element can take input focus (is focusable), if it should participate to sequential keyboard navigation, and if so, at what position. It can takes several values:

    • a negative value means that the element should be focusable, but should not be reachable via sequential keyboard navigation;
    • 0 means that the element should be focusable and reachable via sequential keyboard navigation, but its relative order is defined by the platform convention;
    • a positive value which means should be focusable and reachable via sequential keyboard navigation; its relative order is defined by the value of the attribute: the sequential follow the increasing number of the tabindex. If several elements share the same tabindex, their relative order follows their relative position in the document).
    Definition Classes
    HTMLTag
  75. val tagName: String

    Permalink
    Definition Classes
    TagTag
  76. def title: StateChannel[String]

    Permalink

    Contains a text representing advisory information related to the element it belongs to.

    Contains a text representing advisory information related to the element it belongs to. Such information can typically, but not necessarily, be presented to the user as a tooltip.

    Definition Classes
    HTMLTag
  77. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  78. def translate: StateChannel[String]

    Permalink

    Is an enumerated attribute that is used to specify whether an element's attribute values and the values of it s Text node children are to be translated when the page is localized, or whether to leave them unchanged.

    Is an enumerated attribute that is used to specify whether an element's attribute values and the values of it s Text node children are to be translated when the page is localized, or whether to leave them unchanged. It can have the following values:

    • empty string and "yes", which indicates that the element will be translated.
    • "no", which indicates that the element will not be translated.
    Definition Classes
    HTMLTag
  79. def triggerAction(action: String, arguments: Any*): Unit

    Permalink
    Definition Classes
    Tag
  80. def type: StateChannel[String]

    Permalink

    The type of the button.

    The type of the button. Possible values are:

    • submit: The button submits the form data to the server. This is the default if the attribute is not specified, or if the attribute is dynamically changed to an empty or invalid value.
    • reset: The button resets all the controls to their initial values.
    • button: The button has no default behavior. It can have client-side scripts associated with the element's events, which are triggered when the events occur.
  81. def value: StateChannel[String]

    Permalink

    The initial value of the button.

  82. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  85. def watchAttributes: ReadChannel[Delta[String, Var[Any]]]

    Permalink
    Definition Classes
    Tag
  86. def watchChildren: ReadChannel[Delta[Node]]

    Permalink
    Definition Classes
    Tag → Children
  87. def watchEvents: ReadChannel[Delta[String, (Any) ⇒ Unit]]

    Permalink
    Definition Classes
    Tag

Inherited from HTMLTag

Inherited from state.Tag

Inherited from Children

Inherited from state.Node

Inherited from Tag

Inherited from Container

Inherited from Node

Inherited from AnyRef

Inherited from Any

Ungrouped