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