styledJFXComboBox

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.


fun <T> NodeManager.styledJFXComboBox(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null): JFXComboBox<T>

Add a styled JFXComboBox to this manager.

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> NodeManager.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 manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.