column

fun column(styling: BasicParams.(value: IndexedValue<StatefulItem<T>>) -> Unit = {}, expression: ColumnsContext.ColumnContext<T>.() -> Unit)

This context function opens the ColumnContext for configuring one column of the table.

See also

Parameters

expression

a lambda expression with the ColumnContext based configuration expressions

styling

a lambda expression for declaring the styling as fritz2's styling DSL

fun column(styling: BasicParams.(value: IndexedValue<StatefulItem<T>>) -> Unit = {}, title: String, expression: ColumnsContext.ColumnContext<T>.() -> Unit)

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

expression

a lambda expression with the ColumnContext based configuration expressions

styling

a lambda expression for declaring the styling as fritz2's styling DSL

title

the String based title of the column