4 Answers, 1 is accepted
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.
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>
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.