Package-level declarations
Clasess supporting HTML tables.
Types
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 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.
Functions
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 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.