Clasess supporting HTML tables.
open class Cell : Tag
HTML table cell component. |
|
open class HeaderCell : Tag
HTML table header cell component. |
|
enum class ResponsiveType
HTML table responsive types. |
|
open class Row : Tag
HTML table row component. |
|
enum class Scope |
|
open class Table : SimplePanel
HTML table component. |
|
enum class TableType
HTML table types. |
|
enum class TheadType
HTML table header types. |
fun Row.cell(content: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String> = setOf(), init: (Cell.() -> Unit)? = null): Cell
DSL builder extension function. |
|
fun Row.headerCell(content: String? = null, rich: Boolean = false, align: Align? = null, scope: Scope? = null, classes: Set<String> = setOf(), init: (HeaderCell.() -> Unit)? = null): HeaderCell
DSL builder extension function. |
|
fun Table.row(classes: Set<String> = setOf(), init: (Row.() -> Unit)? = null): Row
DSL builder extension function. |
|
fun Container.table(headerNames: List<String>? = null, types: Set<TableType> = setOf(), : String? = null, responsiveType: ResponsiveType? = null, theadType: TheadType? = null, classes: Set<String> = setOf(), init: (Table.() -> Unit)? = null): Table
DSL builder extension function. |
|
fun Row.thcell(content: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String> = setOf(), init: (HeaderCell.() -> Unit)? = null): HeaderCell
DSL builder extension function. |