Package io. kvision. table
Clasess supporting HTML tables.
Types
Header Cell
Link copied to clipboard
open class HeaderCell(content: String?, rich: Boolean, align: Align?, scope: Scope?, className: String?, init: HeaderCell.() -> Unit?) : Tag
Content copied to clipboard
HTML table header cell component.
Responsive Type
Link copied to clipboard
HTML table responsive types.
Table
Link copied to clipboard
open class Table(headerNames: List<String>?, types: Set<TableType>, caption: String?, responsiveType: ResponsiveType?, tableColor: TableColor?, theadColor: TableColor?, className: String?, init: Table.() -> Unit?) : SimplePanel
Content copied to clipboard
HTML table component.
Table Color
Link copied to clipboard
HTML table color variants.
Functions
header Cell
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
Content copied to clipboard
fun Table.headerCell(content: String? = null, rich: Boolean = false, align: Align? = null, scope: Scope? = null, className: String? = null, init: HeaderCell.() -> Unit? = null): HeaderCell
Content copied to clipboard
DSL builder extension function.
table
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, className: String? = null, init: Table.() -> Unit? = null): Table
Content copied to clipboard
DSL builder extension function.
thcell
Link copied to clipboard
fun Row.thcell(content: String? = null, rich: Boolean = false, align: Align? = null, className: String? = null, init: HeaderCell.() -> Unit? = null): HeaderCell
Content copied to clipboard
DSL builder extension function.