checkListView
inline fun <T> NodeContainer.checkListView(items: ObservableList<T> = observableArrayList()): CheckListView<T>
Add a CheckListView to this container.
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> NodeContainer.checkListView(items: ObservableList<T> = observableArrayList(), configuration: CheckListView<T>.() -> Unit): CheckListView<T>
Add a CheckListView with configuration block to this container.
Return
the control added.
Parameters
configuration
the configuration block.