column
fun column(styling: BasicParams.(value: IndexedValue<StatefulItem<T>>) -> Unit = {}, expression: ColumnsContext.ColumnContext<T>.() -> Unit)
Content copied to clipboard
This context function opens the ColumnContext for configuring one column of the table.
See also
Parameters
styling
a lambda expression for declaring the styling as fritz2's styling DSL
expression
a lambda expression with the ColumnContext based configuration expressions
fun column( styling: BasicParams.(value: IndexedValue<StatefulItem<T>>) -> Unit = {}, title: String, expression: ColumnsContext.ColumnContext<T>.() -> Unit)
Content copied to clipboard
This context function opens the ColumnContext for configuring one column of the table.
This variant offers an additional title parameter in order to set the title of the column.
See also
Parameters
styling
a lambda expression for declaring the styling as fritz2's styling DSL
title
the String based title of the column
expression
a lambda expression with the ColumnContext based configuration expressions