Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WPF > NumericUpDown > RadNumericUpDown does not handle TabIndex properly

Answered RadNumericUpDown does not handle TabIndex properly

Feed from this thread
  • Posted on Jan 28, 2011 (permalink)

    I have the following control defined in a simple Grid control:

    <telerik:RadNumericUpDown x:Name="TotalTimeSpent" Grid.Column="1" Grid.Row="1" Focusable="True" LargeChange="1.0" SmallChange="0.1" Value="0.1" Maximum="24.0" Minimum="0.0" TabIndex="1" UpdateValueEvent="PropertyChanged" ValueFormat="Numeric" />

    Note that I have specified a TabIndex of 1.  However when I tab through the UIElemets in the Window the RadNumericUpDown is always last.  I have discovered that the template TextBox has a TabIndex of 2147483647 causing this behavior.  As a work around I do this: 

    TextBox totalTimeSpent = TotallTimeSpent.FindChildByType<TextBox>() as TextBox;
     
    if (totalTimeSpent != null)
    {
        totalTimeSpent .TabIndex = TotalTimeSpent .TabIndex;
    }

    in the Loaded event.  The result is as if the TabIndex was propagated to the templated TextBox.

     

    Reply

  • Answer Konstantina Konstantina admin's avatar

    Posted on Feb 1, 2011 (permalink)

    Hi John,

    Thank you for contacting us.

    We are aware of this issue and we have already logged it in our Public Issue Tracking System (PITS). You can view it here. You can vote for it, track its status and see when it is going to be implemented.
    Sorry for any inconvenience caused.

    Please let us know if you have any other questions about our controls.

    All the best,
    Konstantina
    the Telerik team
    Let us know about your Windows Phone 7 application built with RadControls and we will help you promote it. Learn more>>

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WPF > NumericUpDown > RadNumericUpDown does not handle TabIndex properly
Related resources for "RadNumericUpDown does not handle TabIndex properly"

WPF NumericUpDown Features  |  Documentation  |  Demos  |  Telerik TV  |  Self-Paced Trainer  ]