styledTableView

fun <S> styledTableView(items: ObservableList<S> = observableArrayList(), vararg styleClass: String, id: String? = null): TableView<S>

Create a styled TableView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun <S> NodeManager.styledTableView(items: ObservableList<S> = observableArrayList(), vararg styleClass: String, id: String? = null): TableView<S>

Add a styled TableView to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun <S> styledTableView(items: ObservableList<S> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: TableView<S>.() -> Unit): TableView<S>

Create a styled TableView with configuration block.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.


inline fun <S> NodeManager.styledTableView(items: ObservableList<S> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: TableView<S>.() -> Unit): TableView<S>

Add a styled TableView with configuration block to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.