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