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

Double 'tabs'

4 Answers 81 Views
TimePicker
This is a migrated thread and some comments may be shown as answers.
Jon
Top achievements
Rank 1
Jon asked on 16 Apr 2010, 03:54 PM
Hi.. when I tab from 1 control into the TimePicker...  it first gets focus, then if I hit tab again the textbox gets focus.

How Can I tab once into the Textbox?

thanks

4 Answers, 1 is accepted

Sort by
0
Kaloyan
Telerik team
answered on 21 Apr 2010, 08:58 AM
Hi Jon,

I have tried a similar scenario with my app. The only control that gets the focus is the TextBox placed inside the control. Can you try this with the latest assemblies.

Kind regards,
Kaloyan
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Jon
Top achievements
Rank 1
answered on 21 Apr 2010, 01:27 PM
HI..
Is this the most recent version 2010.1.309.35?


Here's my code... First the Timepicker border gets highlighted.. then press tab again to go into it...     thanks

 

 

<StackPanel Width="207">

 

 

 

<TextBox BorderBrush="Navy" Height="24" TabIndex="3" MaxLength="20" FontWeight="Bold" HorizontalAlignment="Left" Margin="5 10 5 5" Name="txtCaller" VerticalAlignment="Top" VerticalContentAlignment="Center" Width="196">

 

 

 

<TextBox.Effect>

 

 

 

<DropShadowEffect BlurRadius="0" ShadowDepth="3" />

 

 

 

</TextBox.Effect>

 

 

 

</TextBox>

 

 

 

<telerikPresentation:RadTimePicker HeaderContent="Caller Time" BorderBrush="DarkBlue" Margin="0 20" TabIndex="4" Culture="English (United States)" FontSize="12" FontWeight="Bold" Height="22" HorizontalAlignment="Center" IsTabStop="True" Name="timeCaller" SnapsToDevicePixels="False" telerikPresentation:StyleManager.Theme="Summer" Width="102" AllowDrop="False">

 

 

 

<telerikPresentation:RadTimePicker.Effect>

 

 

 

<DropShadowEffect BlurRadius="0" ShadowDepth="2" />

 

 

 

</telerikPresentation:RadTimePicker.Effect>

 

 

 

</telerikPresentation:RadTimePicker>

 

 

 

 

</StackPanel>

 



0
Accepted
Kaloyan
Telerik team
answered on 22 Apr 2010, 11:36 AM
Hello Jon,

Try removing the IsTabStop="true" from the RadTimePicker declaration as it will cause getting the Tab focus as it receives one.

Regards,
Kaloyan
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Jon
Top achievements
Rank 1
answered on 22 Apr 2010, 12:49 PM
thanks - that worked!
Tags
TimePicker
Asked by
Jon
Top achievements
Rank 1
Answers by
Kaloyan
Telerik team
Jon
Top achievements
Rank 1
Share this question
or