open class Cell : Tag
HTML table cell component.
Cell(content: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String> = setOf(), init: Cell.() -> Unit = null) |
var align: Align?
Text align. |
|
open var content: String?
Text content of the tag. |
|
open var rich: Boolean
Determines if content can contain HTML code. |
|
open var template: (Any?) -> String
Handlebars template. |
|
var type: TAG
Tag type. |
open fun getSnClass(): List<StringBoolPair>
Returns list of CSS class names for current widget in the form of a List. |
|
open fun render(): VNode
Renders current component as a Snabbdom vnode. |
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. |