checkComboBox

fun <T> NodeManager.checkComboBox(items: ObservableList<T> = observableArrayList()): CheckComboBox<T>

Add a CheckComboBox to this manager.

Return

the control added.


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

Create a CheckComboBox with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


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

Add a CheckComboBox with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.