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