styledCustomTextField

fun styledCustomTextField(vararg styleClass: String, id: String? = null): CustomTextField

Create a styled CustomTextField.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledCustomTextField(vararg styleClass: String, id: String? = null): CustomTextField

Add a styled CustomTextField to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledCustomTextField(vararg styleClass: String, id: String? = null, configuration: CustomTextField.() -> Unit): CustomTextField

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

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