This question is locked. New answers and comments are not allowed.
Hello,
I encounter a problem with tab navigation in this context :
When I'm in a radnumericupdown, I can't navigate to the next one with the Tab key. I think it's because the radPaneGroup steal the focus when a component inside get the focus (because I already experienced this problem).
Can you tell me if there is a workaround ?
Note : I'm using the RadControls Q3 2010 SP1
Thank you
I encounter a problem with tab navigation in this context :
<
UserControl
x:Class
=
"SilverlightApplication3.MainPage"
xmlns:input
=
"clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input"
xmlns:navigation
=
"clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation"
xmlns:docking
=
"clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"
mc:Ignorable
=
"d"
d:DesignHeight
=
"300"
d:DesignWidth
=
"400"
>
<
Grid
x:Name
=
"LayoutRoot"
Background
=
"White"
>
<
docking:RadDocking
>
<
docking:RadSplitContainer
>
<
docking:RadPaneGroup
>
<
docking:RadPane
>
<
navigation:RadPanelBar
>
<
navigation:RadPanelBarItem
IsExpanded
=
"True"
>
<
Grid
>
<
Grid.RowDefinitions
>
<
RowDefinition
Height
=
"Auto"
/>
<
RowDefinition
Height
=
"Auto"
/>
<
RowDefinition
Height
=
"Auto"
/>
</
Grid.RowDefinitions
>
<
input:RadNumericUpDown
Grid.Row
=
"0"
/>
<
input:RadNumericUpDown
Grid.Row
=
"1"
/>
<
input:RadNumericUpDown
Grid.Row
=
"2"
/>
</
Grid
>
</
navigation:RadPanelBarItem
>
</
navigation:RadPanelBar
>
</
docking:RadPane
>
</
docking:RadPaneGroup
>
</
docking:RadSplitContainer
>
</
docking:RadDocking
>
</
Grid
>
</
UserControl
>
When I'm in a radnumericupdown, I can't navigate to the next one with the Tab key. I think it's because the radPaneGroup steal the focus when a component inside get the focus (because I already experienced this problem).
Can you tell me if there is a workaround ?
Note : I'm using the RadControls Q3 2010 SP1
Thank you