styledCheckComboBox
inline fun <T> styledCheckComboBox(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null): CheckComboBox<T>
Create a styled CheckComboBox.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T> NodeContainer.styledCheckComboBox(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null): CheckComboBox<T>
Add a styled CheckComboBox to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T> styledCheckComboBox(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: CheckComboBox<T>.() -> Unit): CheckComboBox<T>
Create a styled CheckComboBox 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> NodeContainer.styledCheckComboBox(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: CheckComboBox<T>.() -> Unit): CheckComboBox<T>
Add a styled CheckComboBox with configuration block to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.