Class

pl.metastack.metaweb.tag

Table

Related Doc: package tag

Permalink

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

The HTML Table Element (<table>) represents data in two dimensions or more. Note: Prior to the creation of CSS, HTML <table> elements were often used as a method for page layout. This usage has been discouraged since HTML 4, and the <table> element should not be used for layout purposes. However, HTML emails are an exception, where tables are still commonly used for layout purposes.

Linear Supertypes
Serializable, Serializable, Product, Equals, HTMLTag[Table], Tag, Node, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Table
  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 Table(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 accesskey(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  10. 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
  11. def align(value: String): Table

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

    Permalink

     This enumerated attribute indicates how the table must be aligned in regard of the containing document.

     This enumerated attribute indicates how the table must be aligned in regard of the containing document. It may have the following values:

    • left, meaning that the table is to be displayed to the left of the document;
    • center, meaning that the table is to be displayed centered in the document;
    • right, meaning that the table is to be displayed to the right of the document.

    Note: 

    • Do not use this attribute, as it has been deprecated and the <table> element should be styled using CSS. To give an effect similar to the align attribute, the CSS layout should be used, like margin-left and margin-right set to auto ( or margin to 0 auto) to center it.
    • Prior to Firefox 4, Firefox also supported, in quirks mode only, the values middle, absmiddle, and abscenter as synonyms of center
  13. def append(node: Node): Tag

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

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

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

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

    Permalink
    Definition Classes
    TableTag
  18. def bgcolor(value: String): Table

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

    Permalink

    This attribute defines the background color of the table and its content.

    This attribute defines the background color of the table and its content. 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 has been deprecated and the <table> element should be styled using CSS. To give an effect similar to the bgcolor attribute, the CSS property background-color should be used.

  20. def border(value: String): Table

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

    Permalink

    This integer attribute defines, in pixels, the size of the frame surrounding the table.

    This integer attribute defines, in pixels, the size of the frame surrounding the table. If set to 0, it implies that the frame attribute is set to void.

    Usage note: Do not use this attribute, as it has been deprecated and the <table> element should be styled using CSS. To give an effect similar to the border attribute, the CSS properties border, border-color, border-width and border-style should be used.

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

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

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

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

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

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

    Permalink
    Definition Classes
    Tag
  28. def cellpadding(value: String): Table

    Permalink
  29. def cellpadding: scala.Option[String]

    Permalink

    This attribute defines the space between the content of a cell and the border, displayed or not, of it.

    This attribute defines the space between the content of a cell and the border, displayed or not, of it. If it is a pixel length, this pixel-sized space will be applied on all four sides; if it is a percentage length, the content will be centered and the total vertical space (top and bottom) will represent this percentage. The same is true for the total horizontal space (left and right).

    Usage note: Do not use this attribute, as it has been deprecated and the <table> element should be styled using CSS. To give an effect similar to the border attribute, use the CSS property border-collapse with the value collapse on the  <table> element itself, and the property padding on the <td>.

  30. def cellspacing(value: String): Table

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

    Permalink

    This attribute defines the size, in percentage or in pixels, of the space between two cells (both horizontally and vertically), between the top of the table and the cells of the first row, the left of the table and the first column, the right of the table and the last column and the bottom of the table and the last row.

    This attribute defines the size, in percentage or in pixels, of the space between two cells (both horizontally and vertically), between the top of the table and the cells of the first row, the left of the table and the first column, the right of the table and the last column and the bottom of the table and the last row.

    Usage note: Do not use this attribute, as it has been deprecated and the <table> element should be styled using CSS. To give an effect similar to the cellspacing attribute, use the CSS property border-spacing  on the <table> element itself.

  32. val children: Seq[Node]

    Permalink
    Definition Classes
    TableTag
  33. def class(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  34. 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
  35. def clearAll: Tag

    Permalink
    Definition Classes
    Tag
  36. def clearAttr: Tag

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

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

    Permalink
    Definition Classes
    HTMLTag
  39. 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
  40. def contextmenu(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  41. 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
  42. def copy(attributes: scala.Predef.Map[String, Any] = attributes, children: Seq[Node] = children): Table

    Permalink
    Definition Classes
    TableTag
  43. def dir(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  44. 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
  45. def draggable(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  46. 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
  47. def dropzone(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  48. 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
  49. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    Tag
  52. def frame(value: String): Table

    Permalink
  53. def frame: scala.Option[String]

    Permalink

    This enumerated attribute defines which side of the frame surrounding the table must be displayed.

    This enumerated attribute defines which side of the frame surrounding the table must be displayed. It may have the following values:

      above   below
      hsides   vsides
      lhs   rhs
      border   box
      void

    Usage note: Do not use this attribute, as it has been deprecated and the <table> element should be styled using CSS. To give an effect similar to the frame attribute, use the CSS properties border-style and border-width.

  54. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  55. def hidden(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  56. 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
  57. def id(value: String): Table

    Permalink
    Definition Classes
    HTMLTagTag
  58. 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
  59. def instantiate(nodes: (String, Node)*): Tag

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

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

    Permalink
    Definition Classes
    Any
  62. def itemid(value: String): Table

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

    Permalink

    Definition Classes
    HTMLTag
  64. def itemprop(value: String): Table

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

    Permalink

    Definition Classes
    HTMLTag
  66. def itemref(value: String): Table

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

    Permalink

    Definition Classes
    HTMLTag
  68. def itemscope(value: String): Table

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

    Permalink

    Definition Classes
    HTMLTag
  70. def itemtype(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  71. 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
  72. def lang(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  73. 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
  74. def map(f: (Node) ⇒ Node): Node

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Tag
  84. def rules(value: String): Table

    Permalink
  85. def rules: scala.Option[String]

    Permalink

    This enumerated attribute defines where rules, i.e.

    This enumerated attribute defines where rules, i.e. lines, should appear in a table. It can have the following values:

    • none, which indicates the no rules will be displayed; it is the default value;
    • groups, which will make the rules to be displayed between row groups (defined by the <thead>, <tbody> and <tfoot> elements) and between column groups (defined by the <col> and <colgroup> elements) only; - rows, which will make the rules to be displayed between rows; - columns, which will make the rules to be displayed between columns; - all, which wil make the rules to be displayed between rows and columns. Note: - The styling of the rules is browser-dependant and cannot be modified. - Do not use this attribute, as it has been deprecated and the rules should be defined and styled using CSS. Use the CSS property border on the adequate <thead>, <tbody>, <tfoot>, <col> or <colgroup> elements.
  86. def set(nodes: Seq[Node]): Tag

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

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

    Permalink
    Definition Classes
    Tag
  89. def spellcheck(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  90. 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
  91. def style(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  92. 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
  93. def summary(value: String): Table

    Permalink
  94. def summary: scala.Option[String]

    Permalink

    This attribute defines an alternative text use to describe the table in user-agent unable to display it.

    This attribute defines an alternative text use to describe the table in user-agent unable to display it. Typically, it contents a description of it to allow visually impaired people, like blind people browsing the web using Braille screen, to get the information in it. If the information added in this attribute may also be useful for non-visually impaired people, consider using the <caption> instead. The summary attribute is not mandatory and may be omitted when a <caption> element fulfills its role. Usage Note: Do not use this attribute, as it has been deprecated. Instead, use one of these way of describing a table: - In prose, surrounding the table (this is the less semantic-conveying way of doing it). - In the table's <caption> element. - In a <details> element, inside the table's <caption> element. - Include the <table> element in a <figure> element and add the description in prose next to it. - Include the <table> element in a <figure> element and add the description in prose inside a <figcaption> element. - Adjust the table so that such description is no more needed, by using <th> and <thead> elements for example.

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

    Permalink
    Definition Classes
    AnyRef
  96. def tabindex(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  97. 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
  98. def tagName: String

    Permalink
    Definition Classes
    TableTag
  99. def title(value: String): Table

    Permalink
    Definition Classes
    HTMLTag
  100. 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
  101. def translate(value: String): Table

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

    Permalink
    Definition Classes
    Tag
  104. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  107. def width(value: String): Table

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

    Permalink

    This attribute defines the width of the table.

    This attribute defines the width of the table. It may either be a pixel length or a percentage value, representing the percentage of the width of its container that the table should use.

    Usage Note: Do not use this attribute, as it has been deprecated and the rules should be defined and styled using CSS. Use the CSS property width instead.

  109. def withoutId: Tag

    Permalink
    Definition Classes
    Tag

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from HTMLTag[Table]

Inherited from Tag

Inherited from Node

Inherited from AnyRef

Inherited from Any

Ungrouped