open class Password : Text
Form field password component.
Password(value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false) |
var autocomplete: Boolean?
Determines if autocomplete is enabled for the input element. |
|
val input: TextInput
The actual input component. |
|
var type: TextInputType
Text input type. |
fun Container.password(value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false, init: (Password.() -> Unit)? = null): Password
DSL builder extension function. |
fun <T> Any?.createInstance(vararg args: dynamic): T
Helper function for creating JavaScript objects from dynamic constructors. |