styledCheckTreeView

fun <T> styledCheckTreeView(root: CheckBoxTreeItem<T>? = null, vararg styleClass: String, id: String? = null): CheckTreeView<T>

Create a styled CheckTreeView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun <T> NodeManager.styledCheckTreeView(root: CheckBoxTreeItem<T>? = null, vararg styleClass: String, id: String? = null): CheckTreeView<T>

Add a styled CheckTreeView to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun <T> styledCheckTreeView(root: CheckBoxTreeItem<T>? = null, vararg styleClass: String, id: String? = null, configuration: CheckTreeView<T>.() -> Unit): CheckTreeView<T>

Create a styled CheckTreeView with configuration block.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.


inline fun <T> NodeManager.styledCheckTreeView(root: CheckBoxTreeItem<T>? = null, vararg styleClass: String, id: String? = null, configuration: CheckTreeView<T>.() -> Unit): CheckTreeView<T>

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