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

Peek Button Tap looses focus

2 Answers 24 Views
PasswordBox
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Brian
Top achievements
Rank 1
Brian asked on 13 Aug 2013, 10:25 AM
When the Peek Button is tapped (finger down, then finger up a second later), the password field looks like it looses focus.  
Our password field is down the bottom of the screen so when the user taps on it, it scrolls to the top half of the screen so the keyboard can display.  By tapping on the peek button, the keyboard does not dismiss, but the password field scrolls back down to the bottom of the page.
What I would like is a way for the password field not to loose focus if the peek button is "Tapped"

2 Answers, 1 is accepted

Sort by
0
Ivo
Telerik team
answered on 14 Aug 2013, 12:36 PM
Hello Brian,
Thank you for reporting that issue.
We were able to reproduce it with both actions- tap and hold at the peek button.
The issue is reported into our bug-tracking system and we are already working on it.
I've also updated your Telerik points accordingly.

Regards,
Ivo
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
David
Top achievements
Rank 1
answered on 08 Oct 2013, 01:51 PM
Hi,

Just got that issue. one solution working for me is to subscribe to the PeekButtonTap event and refocus the sender.

private void OnPeekButtonTap(object sender, EventArgs e)
{
      ((RadPasswordBox)(sender)).Focus();
}
Tags
PasswordBox
Asked by
Brian
Top achievements
Rank 1
Answers by
Ivo
Telerik team
David
Top achievements
Rank 1
Share this question
or