jfxTreeTableView

fun <S : RecursiveTreeObject<S>> NodeManager.jfxTreeTableView(root: TreeItem<S>? = null): JFXTreeTableView<S>

Add a JFXTreeTableView to this manager.

Return

the control added.


inline fun <S : RecursiveTreeObject<S>> jfxTreeTableView(root: TreeItem<S>? = null, configuration: JFXTreeTableView<S>.() -> Unit): JFXTreeTableView<S>

Create a JFXTreeTableView with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


inline fun <S : RecursiveTreeObject<S>> NodeManager.jfxTreeTableView(root: TreeItem<S>? = null, configuration: JFXTreeTableView<S>.() -> Unit): JFXTreeTableView<S>

Add a JFXTreeTableView with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.