[Control] emailField
Part of: mobl::ui::generic
Arguments:
s : Stringvariable/property to bind the control to.placeholder : String = nullplaceholder text (appears when text field is empty, optional)label : String = nulllabel text (optional)validator : Function1<String,String> = emailValidatorvalidator function, takessas argument and returns error message or empty string if OK (optional)style : Style = textFieldStylethe style to use for the email fieldinvalidStyle : Style = textFieldInvalidStylethe style to use for the email field on invalid inputautofocus : Bool = falsewhether the control should get immediately get focus when loaded.onchange : Callback = nullevent triggered when the text field changed and loses focus (optional).onkeyup : Callback = nullevent triggered on every keypress (optional).
A text field control that validates whether the value is a valid e-mail address.
Example:
var email = ""
group {
item { emailField(email, label="Email") }
}
mobl/ui/generic/emailfield.txt · Last modified: 2013/10/01 02:29 (external edit)
