styledPasswordField

fun styledPasswordField(vararg styleClass: String, id: String? = null): PasswordField

Create a styled PasswordField.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledPasswordField(vararg styleClass: String, id: String? = null): PasswordField

Add a styled PasswordField to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

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

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