styledTreeTableView

fun <S> styledTreeTableView(root: TreeItem<S>? = null, vararg styleClass: String, id: String? = null): TreeTableView<S>

Create a styled TreeTableView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun <S> NodeManager.styledTreeTableView(root: TreeItem<S>? = null, vararg styleClass: String, id: String? = null): TreeTableView<S>

Add a styled TreeTableView to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun <S> styledTreeTableView(root: TreeItem<S>? = null, vararg styleClass: String, id: String? = null, configuration: TreeTableView<S>.() -> Unit): TreeTableView<S>

Create a styled TreeTableView 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.styledTreeTableView(root: TreeItem<S>? = null, vararg styleClass: String, id: String? = null, configuration: TreeTableView<S>.() -> Unit): TreeTableView<S>

Add a styled TreeTableView 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.