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