treeTableView

fun <S> NodeManager.treeTableView(root: TreeItem<S>? = null): TreeTableView<S>

Add a TreeTableView to this manager.

Return

the control added.


inline fun <S> treeTableView(root: TreeItem<S>? = null, configuration: TreeTableView<S>.() -> Unit): TreeTableView<S>

Create a TreeTableView with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


inline fun <S> NodeManager.treeTableView(root: TreeItem<S>? = null, configuration: TreeTableView<S>.() -> Unit): TreeTableView<S>

Add a TreeTableView with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.