styledTextField

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.


fun NodeManager.styledTextField(text: String = "", vararg styleClass: String, id: String? = null): TextField

Add a styled TextField to this manager.

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 NodeManager.styledTextField(text: String = "", vararg styleClass: String, id: String? = null, configuration: TextField.() -> Unit): TextField

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