Declined
Last Updated: 03 Aug 2020 11:23 by ADMIN
Tobias
Created on: 03 Aug 2020 08:46
Category: RibbonView
Type: Bug Report
1
RibbonView: Focus does not jump between different groups even when KeyboardNavigation.TabNavigation of the groups is set
Navigating with the Tab key does not jump between different RadRibbonGroups even if they have their KeyboardNavigation.TabNavigation property set.
1 comment
ADMIN
Dilyan Traykov
Posted on: 03 Aug 2020 11:23

Hello,

The desired behavior can be achieved by setting the KeyboardNavigation.TabNavigation property of the RadRibbonView control to Cycle and also setting it to Continue for the child controls:

<telerik:RadRibbonView x:Name="radRibbon" ApplicationName="Tab Index Test" KeyboardNavigation.TabNavigation="Cycle">
            <telerik:RadRibbonView.Items>
                <telerik:RadRibbonTab Header="Test Tab"  >
                    <telerik:RadRibbonGroup KeyboardNavigation.TabNavigation="Continue" >
                        <StackPanel>
                            <TextBox Width="50"/>
                            <TextBox Width="50"/>
                        </StackPanel>
                    </telerik:RadRibbonGroup>
                    <telerik:RadRibbonGroup KeyboardNavigation.TabNavigation="Continue" >
                        <StackPanel>
                            <TextBox Width="50" />
                            <TextBox Width="50" />
                        </StackPanel>
                    </telerik:RadRibbonGroup>
                </telerik:RadRibbonTab>
            </telerik:RadRibbonView.Items>
        </telerik:RadRibbonView>

Regards,
Dilyan Traykov
Progress Telerik