Posted 19 Nov 2012 Link to this post
<telerik:RadTextBox ID=
"PasswordInput1"
runat=
"server"
ValidationGroup=
"AccountCreate"
Label=
"Enter password:"
TextMode=
"Password"
onkeyup=
"checkPasswordMatch()"
Width=
"300"
LabelWidth=
"150"
>
<PasswordStrengthSettings ShowIndicator=
"true"
TextStrengthDescriptions=
"Level1;Level2;Level3;Level4;Level5"
IndicatorElementBaseStyle=
"PasswordBase"
TextStrengthDescriptionStyles=
"L0;L1;L2;L3;L4;L5"
IndicatorElementID=
"CustomIndicator"
></PasswordStrengthSettings>
</telerik:RadTextBox>
Posted 22 Nov 2012 Link to this post
<
PasswordStrengthSettings
...
IndicatorWidth
=
"10px"
Posted 23 Nov 2012 Link to this post
<div>
"*Enter Password:"
IndicatorWidth=
"0px"
PreferredPasswordLength=
"8"
</div>
"PasswordInput2"
"*Repeat Password:"
<ClientEvents></ClientEvents>
<div style=
"padding:3px;"
<span id=
> </span> <span id=
"PasswordRepeatedIndicator"
class
"PasswordBase L0"
></span>
Posted 15 Oct 2014 Link to this post
Posted 17 Oct 2014 Link to this post
function
buttonClick() {
var
textBox = $find(
'<%= PasswordInput1.ClientID %>'
);
indicatorID = textBox.get_passwordSettings().IndicatorElementID;
indicatorEl = $get(indicatorID);
value = $(indicatorEl).text();
}
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
Posted 20 Oct 2014 Link to this post
Posted 22 Oct 2014 Link to this post
Posted 23 Oct 2014 Link to this post
Posted 28 Oct 2014 Link to this post