styledCheckListView

fun <T> styledCheckListView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null): CheckListView<T>

Create a styled CheckListView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun <T> NodeManager.styledCheckListView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null): CheckListView<T>

Add a styled CheckListView to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun <T> styledCheckListView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: CheckListView<T>.() -> Unit): CheckListView<T>

Create a styled CheckListView 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.styledCheckListView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: CheckListView<T>.() -> Unit): CheckListView<T>

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