Class

pl.metastack.metaweb.tag

Th

Related Doc: package tag

Permalink

case class Th(attributes: scala.Predef.Map[String, Any] = Predef.Map.empty, children: Seq[Node] = Seq.empty) extends HTMLTag[Th] with Product with Serializable

The HTML Table Header Cell Element (<th>) defines a cell that is a header for a group of cells of a table. The group of cells that the header refers to is defined by the scope and headers attribute.

Linear Supertypes
Serializable, Serializable, Product, Equals, HTMLTag[Th], Tag, Node, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Th
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. HTMLTag
  7. Tag
  8. Node
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Th(attributes: scala.Predef.Map[String, Any] = Predef.Map.empty, children: Seq[Node] = Seq.empty)

    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]): Tag

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

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

    Permalink
    Definition Classes
    Tag
  6. def --(node: Seq[Node]): Tag

    Permalink
    Definition Classes
    Tag
  7. def :+(node: Node): Tag

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. def abbr(value: String): Th

    Permalink
  10. def abbr: scala.Option[String]

    Permalink

    This attribute contains a short abbreviated description of the content of the cell.

    This attribute contains a short abbreviated description of the content of the cell. Some user-agent, like speech reader, may present it before the content itself.

    Note: Do not use this attribute as it is obsolete in the latest standard: instead either consider starting the cell content by an independent abbreviated content itself or use the abbreviated content as the cell content and use the long content as the description of the cell by putting it in the title attribute.

  11. def accesskey(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  12. def accesskey: scala.Option[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
  13. def align(value: String): Th

    Permalink
  14. def align: scala.Option[String]

    Permalink

    This enumerated attribute specifies how horizontal alignment of each cell content will be handled.

    This enumerated attribute specifies how horizontal alignment of each cell content will be handled. Possible values are:

    • left, aligning the content to the left of the cell
    • center, centering the content in the cell
    • right, aligning the content to the right of the cell
    • justify, inserting spaces into the textual content so that the content is justified in the cell
    • char, aligning the textual content on a special character with a minimal offset, defined by the char and charoff attributes Unimplemented (see bug 2212).

    If this attribute is not set, the left value is assumed.

    Note: Do not use this attribute as it is obsolete (not supported) in the latest standard.

    • To achieve the same effect as the left, center, right or justify values, use the CSS text-align property on it.
    • To achieve the same effect as the char value, in CSS3, you can use the value of the char as the value of the text-align property Unimplemented.
  15. def append(node: Node): Tag

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

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

    Permalink
    Definition Classes
    Any
  18. def attr(attribute: String): scala.Option[Any]

    Permalink
    Definition Classes
    Tag
  19. val attributes: scala.Predef.Map[String, Any]

    Permalink
    Definition Classes
    ThTag
  20. def axis(value: String): Th

    Permalink
  21. def axis: scala.Option[String]

    Permalink

    This attribute contains a list of space-separated strings.

    This attribute contains a list of space-separated strings. Each string is the id of a group of cells that this header apply to.

    Note: Do not use this attribute as it is obsolete in the latest standard: instead use the scope attribute.

  22. def bgcolor(value: String): Th

    Permalink
  23. def bgcolor: scala.Option[String]

    Permalink

    This attribute defines the background color of each cell of the column.

    This attribute defines the background color of each cell of the column. It is one of the 6-digit hexadecimal code as defined in sRGB, prefixed by a '#'. One of the sixteen predefined color strings may be used:

      black = "#000000"   green = "#008000"
      silver = "#C0C0C0"   lime = "#00FF00"
      gray = "#808080"   olive = "#808000"
      white = "#FFFFFF"   yellow = "#FFFF00"
      maroon = "#800000"   navy = "#000080"
      red = "#FF0000"   blue = "#0000FF"
      purple = "#800080"   teal = "#008080"
      fuchsia = "#FF00FF"   aqua = "#00FFFF"

    Usage note: Do not use this attribute, as it is non-standard and only implemented some versions of Microsoft Internet Explorer: the <th> element should be styled using CSS. To give a similar effect to the bgcolor attribute, use the CSS property background-color instead.

  24. def byClass[T <: Tag](class: String): T

    Permalink
    Definition Classes
    Tag
  25. def byClassOpt[T <: HTMLTag[_]](class: String): scala.Option[T]

    Permalink
    Definition Classes
    Tag
  26. def byId[T <: Tag](id: String): T

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

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

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

    Permalink
    Definition Classes
    Tag
  30. def char(value: String): Th

    Permalink
  31. def char: scala.Option[String]

    Permalink

    This attribute is used to set the character to align the cells in a column on.

    This attribute is used to set the character to align the cells in a column on. Typical values for this include a period (.) when attempting to align numbers or monetary values. If align is not set to char, this attribute is ignored.

    Note: Do not use this attribute as it is obsolete (and not supported) in the latest standard. To achieve the same effect as the char, in CSS3, you can use the character set using the char attribute as the value of the text-align property Unimplemented.

  32. def charoff(value: String): Th

    Permalink
  33. def charoff: scala.Option[String]

    Permalink

    This attribute is used to indicate the number of characters to offset the column data from the alignment characters specified by the char attribute.

    This attribute is used to indicate the number of characters to offset the column data from the alignment characters specified by the char attribute.

    Note: Do not use this attribute as it is obsolete (and not supported) in the latest standard.

  34. val children: Seq[Node]

    Permalink
    Definition Classes
    ThTag
  35. def class(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  36. def class: scala.Option[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
  37. def clearAll: Tag

    Permalink
    Definition Classes
    Tag
  38. def clearAttr: Tag

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. def colspan(value: String): Th

    Permalink
  41. def colspan: scala.Option[String]

    Permalink

    This attribute contains a non-negative integer value that indicates on how many columns does the cell extend.

    This attribute contains a non-negative integer value that indicates on how many columns does the cell extend. Its default value is 1; if its value is set to 0, it does extend until the end of the <colgroup>, eventually implicitly defined, the cell belongs to. Values higher than 1000 are clipped down to 1000.

  42. def contenteditable(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  43. def contenteditable: scala.Option[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
  44. def contextmenu(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  45. def contextmenu: scala.Option[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
  46. def copy(attributes: scala.Predef.Map[String, Any] = attributes, children: Seq[Node] = children): Th

    Permalink
    Definition Classes
    ThTag
  47. def dir(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  48. def dir: scala.Option[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
  49. def draggable(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  50. def draggable: scala.Option[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
  51. def dropzone(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  52. def dropzone: scala.Option[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
  53. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  54. def finalize(): Unit

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

    Permalink
    Definition Classes
    Tag
  56. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  57. def headers(value: String): Th

    Permalink
  58. def headers: scala.Option[String]

    Permalink

    This attributes a list of space-separated strings, each corresponding to the id attribute of the <th> elements that applies to this element.

    This attributes a list of space-separated strings, each corresponding to the id attribute of the <th> elements that applies to this element.

  59. def hidden(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  60. def hidden: scala.Option[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
  61. def id(value: String): Th

    Permalink
    Definition Classes
    HTMLTagTag
  62. def id: scala.Option[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
    HTMLTagTag
  63. def instantiate(nodes: (String, Node)*): Tag

    Permalink
    Definition Classes
    Tag
  64. def instantiateMap(nodes: scala.Predef.Map[String, Node]): Tag

    Permalink
    Definition Classes
    Tag
  65. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  66. def itemid(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  67. def itemid: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  68. def itemprop(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  69. def itemprop: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  70. def itemref(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  71. def itemref: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  72. def itemscope(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  73. def itemscope: scala.Option[String]

    Permalink

    Definition Classes
    HTMLTag
  74. def itemtype(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  75. def itemtype: scala.Option[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
  76. def lang(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  77. def lang: scala.Option[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
  78. def map(f: (Node) ⇒ Node): Node

    Permalink
    Definition Classes
    TagNode
  79. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  82. def partialMap(f: PartialFunction[Node, Node]): Node

    Permalink
    Definition Classes
    Tag
  83. def prepend(node: Node): Tag

    Permalink
    Definition Classes
    Tag
  84. def remAttr(attribute: String): Tag

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

    Permalink
    Definition Classes
    Tag
  86. def removeAll(node: Seq[Node]): Tag

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

    Permalink
    Definition Classes
    Tag
  88. def rowspan(value: String): Th

    Permalink
  89. def rowspan: scala.Option[String]

    Permalink

    This attribute contains a non-negative integer value that indicates on how many rows does the cell extend.

    This attribute contains a non-negative integer value that indicates on how many rows does the cell extend. Its default value is 1; if its value is set to 0, it does extend until the end of the table section ( <thead>, <tbody>, <tfoot>, eventually implicitly defined) the cell belongs to. Values higher than 65534 are clipped down to 65534.

  90. def scope(value: String): Th

    Permalink
  91. def scope: scala.Option[String]

    Permalink

    This enumerated attribute defines the cells that the header defined in this <th> element relates to.

    This enumerated attribute defines the cells that the header defined in this <th> element relates to. It may have the following values:

    • row, which means that the header relates to all cells in the row that this element belongs to;
    • col, which means that the header relates to all cells in the column that this element belongs to;
    • rowgroup, which means that the header relates to all remaining cells in the row group that this element belongs to. The remaining cells are either those to the right of this element, or to his left depending of the value ofdir attribute defined on the <table> element;
    • colgroup, which means that the header relates to all remaining cells in the column group that this element belongs to;
    • auto
  92. def set(nodes: Seq[Node]): Tag

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

    Permalink
    Definition Classes
    Tag
  94. def setAttr(attribute: String, value: Any): Tag

    Permalink
    Definition Classes
    Tag
  95. def spellcheck(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  96. def spellcheck: scala.Option[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
  97. def style(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  98. def style: scala.Option[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
  99. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  100. def tabindex(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  101. def tabindex: scala.Option[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
  102. def tagName: String

    Permalink
    Definition Classes
    ThTag
  103. def title(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  104. def title: scala.Option[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
  105. def translate(value: String): Th

    Permalink
    Definition Classes
    HTMLTag
  106. def translate: scala.Option[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
  107. def updateChild[T <: Tag](id: String, f: (T) ⇒ Node): Node

    Permalink
    Definition Classes
    Tag
  108. def valign(value: String): Th

    Permalink
  109. def valign: scala.Option[String]

    Permalink

    This attribute specifies the vertical alignment of the text within each row of cells of the table header.

    This attribute specifies the vertical alignment of the text within each row of cells of the table header. Possible values for this attribute are:

    • baseline, which will put the text as close to the bottom of the cell as it is possible, but align it on the baseline of the characters instead of the bottom of them. If characters are all of the size, this has the same effect as bottom.
    • bottom, which will put the text as close to the bottom of the cell as it is possible;
    • middle, which will center the text in the cell;
    • and top, which will put the text as close to the top of the cell as it is possible.

    Note: Do not use this attribute as it is obsolete (and not supported) in the latest standard: instead set the CSS  vertical-align property on it.

  110. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  113. def width(value: String): Th

    Permalink
  114. def width: scala.Option[String]

    Permalink

    This attribute is used to define a recommended cell width.

    This attribute is used to define a recommended cell width.  Properties  cellspacing and cellpadding may add additional space, and element  <col> width may also have some effect. In general, if a column's width is too narrow to show a particular cell properly, it, and thus the cells in it, may be widened when displayed. Note: Do not use this attribute in the latest standard: instead set the CSS width property.

  115. def withoutId: Tag

    Permalink
    Definition Classes
    Tag

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from HTMLTag[Th]

Inherited from Tag

Inherited from Node

Inherited from AnyRef

Inherited from Any

Ungrouped