Package-level declarations

Clasess supporting HTML tables.

Types

Link copied to clipboard
open class Cell(content: String? = null, rich: Boolean = false, align: Align? = null, className: String? = null, init: Cell.() -> Unit? = null) : Tag

HTML table cell component.

Link copied to clipboard
open class HeaderCell(content: String? = null, rich: Boolean = false, align: Align? = null, scope: Scope? = null, className: String? = null, init: HeaderCell.() -> Unit? = null) : Tag

HTML table header cell component.

Link copied to clipboard

HTML table responsive types.

Link copied to clipboard
open class Row(className: String? = null, init: Row.() -> Unit? = null) : Tag

HTML table row component.

Link copied to clipboard
enum Scope : Enum<Scope>
Link copied to clipboard
open class Table(headerNames: List<String>? = null, types: Set<TableType> = setOf(), caption: String? = null, responsiveType: ResponsiveType? = null, tableColor: TableColor? = null, val theadColor: TableColor? = null, tbodyDivider: Boolean = false, className: String? = null, init: Table.() -> Unit? = null) : SimplePanel

HTML table component.

Link copied to clipboard

HTML table color variants.

Link copied to clipboard

HTML table types.

Functions

Link copied to clipboard
fun Row.cell(content: String? = null, rich: Boolean = false, align: Align? = null, className: String? = null, init: Cell.() -> Unit? = null): Cell

DSL builder extension function.

Link copied to clipboard
fun Row.headerCell(content: String? = null, rich: Boolean = false, align: Align? = null, scope: Scope? = null, className: String? = null, init: HeaderCell.() -> Unit? = null): HeaderCell
fun Table.headerCell(content: String? = null, rich: Boolean = false, align: Align? = null, scope: Scope? = null, className: String? = null, init: HeaderCell.() -> Unit? = null): HeaderCell

DSL builder extension function.

Link copied to clipboard
fun Table.row(className: String? = null, init: Row.() -> Unit? = null): Row

DSL builder extension function.

Link copied to clipboard
fun Container.table(headerNames: List<String>? = null, types: Set<TableType> = setOf(), caption: String? = null, responsiveType: ResponsiveType? = null, tableColor: TableColor? = null, theadColor: TableColor? = null, tbodyDivider: Boolean = false, className: String? = null, init: Table.() -> Unit? = null): Table

DSL builder extension function.

Link copied to clipboard
fun Row.thcell(content: String? = null, rich: Boolean = false, align: Align? = null, className: String? = null, init: HeaderCell.() -> Unit? = null): HeaderCell

DSL builder extension function.