Name | Type | Default |
disabled
|
Boolean
|
false
|
Gets or sets whether the widget is disabled.
<template> <JqxPasswordInput ref="myPasswordInput" :disabled="true" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
height
|
Number | String
|
"auto"
|
Gets or sets the widget's height. The value may be "auto", a number or a string like "Npx", where N is a number.
<template> <JqxPasswordInput ref="myPasswordInput" :height="50" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
localization
|
Object
|
{ passwordStrengthString: 'Password strength', tooShort: 'Too short', weak: 'Weak', fair: 'Fair', good: 'Good', strong: 'Strong' }
|
Sets the various text values used in the widget. Useful for localization.
Default value:
{ passwordStrengthString: "Password strength", tooShort: "Too short", weak: "Weak", fair: "Fair", good: "Good", strong: "Strong" }
<template> <JqxPasswordInput ref="myPasswordInput" :showStrength="true" :localization="localization" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue'; export default { components: { JqxPasswordInput }, data: function () { return { localization: { passwordStrengthString: "Password strength",
|
maxLength
|
Number
|
null
|
Gets or sets the maximal number of characters in the password.
<template> <JqxPasswordInput ref="myPasswordInput" :maxLength="7" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
placeHolder
|
String
|
null
|
Gets or sets the password input's placeholder text.
<template> <JqxPasswordInput ref="myPasswordInput" :placeHolder="'Enter a Password'" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
passwordStrength
|
Function
|
null
|
A callback function for defining a custom strength rule. The function has three parameters:
- First parameter - the value of the password.
- Second parameter - an object containing the numbers of different types of characters - letters, numbers and special keys.
- Third parameter - the default strength value, based on the built-in rule.
Note: The property showStrength should be set to true for passwordStrength to have an effect.
<template> <JqxPasswordInput ref="myPasswordInput" :showStrength="true" :passwordStrength="passwordStrength" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue'; export default { components: { JqxPasswordInput }, methods: { passwordStrength: function (password, characters, defaultStrength) { var length = password.length; var letters = characters.letters; var numbers = characters.numbers; var specialKeys = characters.specialKeys; var strengthCoefficient = letters + numbers + 2 * specialKeys + letters * numbers * specialKeys; var strengthValue; if (length < 4) { strengthValue = "Too short"; } else if (strengthCoefficient < 10) { strengthValue = "Weak"; } else if (strengthCoefficient < 20) { strengthValue = "Fair"; } else if (strengthCoefficient < 30) { strengthValue = "Good"; } else { strengthValue = "Strong";
|
rtl
|
Boolean
|
false
|
Determines whether the right-to-left support is enabled.
<template> <JqxPasswordInput ref="myPasswordInput" :rtl="true" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
strengthColors
|
Object
|
{ tooShort: 'rgb(170, 0, 51)', weak: 'rgb(170, 0, 51)', fair: 'rgb(255, 204, 51)', good: 'rgb(45, 152, 243)', strong: 'rgb(118, 194, 97)' }
|
Sets the the colors used in the tooltip which shows the strength.
Default value:
{ tooShort: "rgb(170, 0, 51)", weak: "rgb(170, 0, 51)", fair: "rgb(255, 204, 51)", good: "rgb(45, 152, 243)", strong: "rgb(118, 194, 97)" }
<template> <JqxPasswordInput ref="myPasswordInput" :showStrength="true" :strengthColors='{ tooShort: "Red", weak: "Red", fair: "Yellow", good: "Blue", strong: "Green" }' /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
showStrength
|
Boolean
|
false
|
Gets or sets whether a tooltip which shows the password's strength will be shown.
<template> <JqxPasswordInput ref="myPasswordInput" :showStrength="true" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
showStrengthPosition
|
String
|
"right"
|
Gets or sets the position of the tooltip which shows the password strength. Possible values:
- "top"
- "bottom"
- "left"
- "right"
Note: The property showStrength should be set to true for showStrengthPosition to have an effect.
<template> <JqxPasswordInput ref="myPasswordInput" :showStrength="true" :showStrengthPosition="'bottom'" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
strengthTypeRenderer
|
Function
|
null
|
A callback function for custom rendering of the tooltip which shows the password strength. The function has three parameters:
- First parameter - the value of the password.
- Second parameter - an object containing the numbers of different types of characters - letters, numbers and special keys.
- Third parameter - the default strength value, based on the built-in rule.
Note: The property showStrength should be set to true for strengthTypeRenderer to have an effect.
<template> <JqxPasswordInput ref="myPasswordInput" :showStrength="true" :strengthTypeRenderer="strengthTypeRenderer" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue'; export default { components: { JqxPasswordInput }, methods: { strengthTypeRenderer: function (password, characters, defaultStrength) { var length = password.length; var letters = characters.letters; var numbers = characters.numbers; var specialKeys = characters.specialKeys; var strengthCoefficient = letters + numbers + 2 * specialKeys + letters * numbers * specialKeys; var strengthValue; var color; if (length < 8) { strengthValue = "Too short"; color = "rgb(170, 0, 51)"; } else if (strengthCoefficient < 20) { strengthValue = "Weak"; color = "rgb(170, 0, 51)"; } else if (strengthCoefficient < 30) { color = "rgb(255, 204, 51)"; strengthValue = "Fair"; } else if (strengthCoefficient < 40) { strengthValue = "Good"; color = "rgb(45, 152, 243)"; } else { strengthValue = "Strong"; color = "rgb(118, 194, 97)"; } return "<div style='color: " + color + ";'>" + strengthValue + "</div>";
|
showPasswordIcon
|
Boolean
|
true
|
Gets or sets whether the Show/Hide password icon will appear.
<template> <JqxPasswordInput ref="myPasswordInput" :showPasswordIcon="false" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
theme
|
String
|
''
|
Sets the widget's theme.
- Include the theme's CSS file after jqx.base.css.
The following code example adds the 'material' theme. <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" />
<link rel="stylesheet" href="../../jqwidgets/styles/jqx.material.css" type="text/css" />
- Set the widget's theme property to 'material' when you initialize it.
<template> <JqxPasswordInput ref="myPasswordInput" :theme="'material'" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
width
|
Number | String
|
"auto"
|
Gets or sets the widget's width. The value may be "auto", a number or a string like "Npx", where N is a number.
<template> <JqxPasswordInput ref="myPasswordInput" :width="200" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
|
|
change
|
Event
|
|
This event is triggered when the value in the input is changed.
Code examples
Bind to the change event of jqxPasswordInput.
<template> <JqxPasswordInput ref="myPasswordInput" @change="onChange($event)" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue'; export default { components: { JqxPasswordInput }, methods: { onChange: function (event) { alert( 'do something...');
|
|
Name | Arguments | Return Type |
render
|
None
|
None
|
Renders the widget.
<template> <JqxPasswordInput ref="myPasswordInput" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue'; export default { components: { JqxPasswordInput }, mounted: function () { this.$refs.myPasswordInput.render();
|
refresh
|
None
|
None
|
Refreshes the widget.
<template> <JqxPasswordInput ref="myPasswordInput" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue'; export default { components: { JqxPasswordInput }, mounted: function () { this.$refs.myPasswordInput.refresh();
|
val
|
value
|
String
|
Gets or sets the password. If the parameter is set, sets the value of the password in the input. If there is no parameter set, returns the string value of the password.
<template> <JqxPasswordInput ref="myPasswordInput" /> </template>
<script> import JqxPasswordInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpasswordinput.vue';
export default { components: { JqxPasswordInput }, mounted: function () { this.$refs.myPasswordInput.val( 'password');
|