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

Tabindex not work

5 Answers 147 Views
NumericUpDown
This is a migrated thread and some comments may be shown as answers.
Humayon
Top achievements
Rank 1
Humayon asked on 21 Sep 2009, 10:05 AM
 Tabindex not work!

help me .

5 Answers, 1 is accepted

Sort by
0
Nikolay
Telerik team
answered on 21 Sep 2009, 12:32 PM
Hi Humayon ,

Could you please provide some more info on the problem. What were the steps you performed before the problem appeared?

All the best,
Nick
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
steve
Top achievements
Rank 1
answered on 09 Dec 2009, 11:26 AM
Hi
I have the same problem. I have created a silverlight app that has both microsoft controls and telerik ones. Setting the tab index on each property enables me to tab between all controlls, but when it should tab to a telerik controll it tabs over to the next ms controll. The telerik controlls include the RadDatePicker and the RadNumericUpDown.

Cheers

steve
0
Valeri Hristov
Telerik team
answered on 09 Dec 2009, 11:44 AM
Hi steve,

What's the version of RadControls you are using? We fixed similar problem a couple of months ago, so if the problem persists with the latest internal build (http://www.telerik.com/account/downloads/internal-builds.aspx) I would like to as you to open a new support ticket and send us a simple application that could be used to observe the problem, along with the Telerik assemblies.

Using the following XAML and the latest available assemblies, I was unable to reproduce the problem:

<UserControl x:Class="SilverlightApplication1.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:telerikInput="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input">
<StackPanel x:Name="LayoutRoot">
    <TextBox />
    <TextBox />
    <telerikInput:RadNumericUpDown TabIndex="1"  />
    <telerikInput:RadDatePicker TabIndex="2" />
    <TextBox TabIndex="0" />
</StackPanel>
</UserControl>

Greetings,
Valeri Hristov
the Telerik team


Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Luis
Top achievements
Rank 1
answered on 05 Sep 2011, 09:20 PM
Hello,
I have the same problem with the tabindex, the problem is only on the RadUpDownNumeric control.  I have downloaded the fixed version and tried theirs code but it didn't solve my problem, i have version Q1 2011 SP1 (11.1.419.0)

Could you help me??

Thank  you
Luis Castillo.
0
Pana
Telerik team
answered on 12 Sep 2011, 06:45 AM
Hello Luis,

The following XAML works fine with the Q1 SP1 2011:

<StackPanel Width="150" HorizontalAlignment="Center" VerticalAlignment="Center">
    <TextBox TabIndex="3" Text="Hello World" telerik:StyleManager.Theme="Office_Black" Margin="2" />
    <telerik:RadNumericUpDown TabIndex="2" Margin="2" />
    <TextBox TabIndex="1" Text="Hello World 2" telerik:StyleManager.Theme="Office_Black" Margin="2" />
    <telerik:RadNumericUpDown TabIndex="0" Margin="2" />
</StackPanel>

The tab order goes from down side up. Could you share with us your page's xaml so we can reproduce the problem here?

Best wishes,
Pana
the Telerik team

Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

Tags
NumericUpDown
Asked by
Humayon
Top achievements
Rank 1
Answers by
Nikolay
Telerik team
steve
Top achievements
Rank 1
Valeri Hristov
Telerik team
Luis
Top achievements
Rank 1
Pana
Telerik team
Share this question
or