styledCheckTreeView
inline 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.
inline fun <T> NodeContainer.styledCheckTreeView(root: CheckBoxTreeItem<T>? = null, vararg styleClass: String, id: String? = null): CheckTreeView<T>
Add a styled CheckTreeView to this container.
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> NodeContainer.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 container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.