Password input
The o-password-input
component is used in forms for getting a password input submitted by the user.
The password input is automatically registered on its parent o-form
, which provides the value for the input programatically. Its value can be also set manually via the data
parameter. This and other attributes are explained on the API section of this page.
Basic example
<o-form editable-detail="no" show-header="no">
<o-password-input attr="password" label="Password" data="password" read-only="no" required="yes"></o-password-input>
<o-password-input attr="password" label="Password" data="password" enabled="no"></o-password-input>
</o-form>
You can see this and more examples of this component in the OntimizeWeb playground.
Validation
The o-password-input
shows automatically an error message when the required
attribute is set to “yes” and there is no value on the input.
Directive: o-password-input
Inherited inputs
-
from FormDataComponent:
- attr
- automatic-binding
- automatic-registering
- clear-button
- data
- enabled
- label
- read-only
- required
- sql-type
- tooltip
- tooltip-position
- tooltip-show-delay
- validators
- width
-
from o-text-input:
- max-length
- min-length
Inherited outputs
-
from FormDataComponent:
- onChange
- onValueChange
-
from o-text-input:
- onBlur
- onFocus