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