5 Answers, 1 is accepted
0
Hi Jannk,
Yes, there shouldn't be any problems with the explained scenario. After selecting an item with the Tab key you will be able to navigate to the next control after pressing the Tab key again.
Hope this helps.
Regards,
Kalin
Telerik
Yes, there shouldn't be any problems with the explained scenario. After selecting an item with the Tab key you will be able to navigate to the next control after pressing the Tab key again.
Hope this helps.
Regards,
Kalin
Telerik
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
0
Jannik
Top achievements
Rank 1
answered on 07 Jul 2014, 11:19 AM
Yup, but our company wants the box to jump into the next control just with ONE tab press, so selecting and moving to next control in one step. Can we do that?
0
Hi Jannk,
What I can suggest you in order to achieve that scenario would be to inherit from the AutoCompleteBox and override the OnKeyDown method. Inside will be able to check whether the Tab key was pressed and move the focus as demonstrated below (TextBox with Name TxtBox will be focused):
Hope this helps.
Regards,
Kalin
Telerik
What I can suggest you in order to achieve that scenario would be to inherit from the AutoCompleteBox and override the OnKeyDown method. Inside will be able to check whether the Tab key was pressed and move the focus as demonstrated below (TextBox with Name TxtBox will be focused):
public
class
CustomAutoCompleteBox : RadAutoCompleteBox
{
protected
override
void
OnKeyDown(KeyEventArgs e)
{
if
(e.Key == Key.Tab)
{
// move the focus
var mp = (MainPage)Application.Current.RootVisual;
mp.TxtBox.Focus();
}
base
.OnKeyDown(e);
}
}
Hope this helps.
Regards,
Kalin
Telerik
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
0
Senthil
Top achievements
Rank 1
answered on 28 Aug 2014, 06:25 AM
Can you please send a sample of customautocompletebox implemented ina project.
0
Hello Senthil,
I noticed you have asked the same question in a General Feedback ticket. I have already replied you regarding this and will kindly ask you to check my reply there.
Regards,
Kalin
Telerik
I noticed you have asked the same question in a General Feedback ticket. I have already replied you regarding this and will kindly ask you to check my reply there.
Regards,
Kalin
Telerik
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.