This is a migrated thread and some comments may be shown as answers.

Password Strength not visible

1 Answer 51 Views
Input
This is a migrated thread and some comments may be shown as answers.
randall
Top achievements
Rank 1
randall asked on 07 Nov 2014, 08:54 PM
i have a textbox with password strength indicator on a asp:panel which is inside a RadPageView.
While i can see the text box, the password strength indicator is not visible.

if i move the textbox outside RadPageview i can see the indicator.

not sure what to do?

1 Answer, 1 is accepted

Sort by
0
Viktor Tachev
Telerik team
answered on 12 Nov 2014, 01:26 PM
Hello Randall,

The issue you describe seems rather strange. I tried to replicate the behavior on my end but to no avail. I used the markup from the code-snippet below for testing. Would you try the code on your end and see how it works?

<telerik:RadTabStrip runat="server" ID="RadTabStrip1" MultiPageID="RadMultiPage1">
    <Tabs>
        <telerik:RadTab Text="Tab1"></telerik:RadTab>
        <telerik:RadTab Text="Tab2"></telerik:RadTab>
        <telerik:RadTab Text="Tab3"></telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>
 
<telerik:RadMultiPage runat="server" ID="RadMultiPage1">
    <telerik:RadPageView runat="server" ID="RadPageView1">
        PgeView1 content
    </telerik:RadPageView>
    <telerik:RadPageView runat="server" ID="RadPageView2">
        <asp:Panel ID="Panel1" runat="server">
 
            <telerik:RadTextBox runat="server" ID="RadTextBox1" TextMode="Password" EnableSingleInputRendering="false">
                <PasswordStrengthSettings ShowIndicator="true"></PasswordStrengthSettings>
            </telerik:RadTextBox>
        </asp:Panel>
    </telerik:RadPageView>
    <telerik:RadPageView runat="server" ID="RadPageView3">
        Pageview 3 content
    </telerik:RadPageView>
</telerik:RadMultiPage>

If the sample is working as expected on your end, would you let me know what needs to be changed in order to replicate the issue?

Regards,
Viktor Tachev
Telerik
 

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.

 
Tags
Input
Asked by
randall
Top achievements
Rank 1
Answers by
Viktor Tachev
Telerik team
Share this question
or