checkListView

fun <T> NodeManager.checkListView(items: ObservableList<T> = observableArrayList()): CheckListView<T>

Add a CheckListView to this manager.

Return

the control added.


inline fun <T> checkListView(items: ObservableList<T> = observableArrayList(), configuration: CheckListView<T>.() -> Unit): CheckListView<T>

Create a CheckListView with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


inline fun <T> NodeManager.checkListView(items: ObservableList<T> = observableArrayList(), configuration: CheckListView<T>.() -> Unit): CheckListView<T>

Add a CheckListView with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.