styledSpinner

fun <T> styledSpinner(vararg styleClass: String, id: String? = null): Spinner<T>

Create a styled Spinner.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun <T> NodeManager.styledSpinner(vararg styleClass: String, id: String? = null): Spinner<T>

Add a styled Spinner to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun <T> styledSpinner(vararg styleClass: String, id: String? = null, configuration: Spinner<T>.() -> Unit): Spinner<T>

Create a styled Spinner 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.styledSpinner(vararg styleClass: String, id: String? = null, configuration: Spinner<T>.() -> Unit): Spinner<T>

Add a styled Spinner 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.