Hi there,
We are using RadContextMenu to pop up a small editor with several TextBoxes. We would like our users to be able to navigate among the text boxes using the Tab key. However, this doesn't work -- tab does nothing.
The following is a trivial example of a ContextMenu with three text boxes. Click inside one TextBox and hit tab. I would expect it to cycle among the three tabs.
How can we enable this behavior, please?
Thanks!
-David
We are using RadContextMenu to pop up a small editor with several TextBoxes. We would like our users to be able to navigate among the text boxes using the Tab key. However, this doesn't work -- tab does nothing.
The following is a trivial example of a ContextMenu with three text boxes. Click inside one TextBox and hit tab. I would expect it to cycle among the three tabs.
How can we enable this behavior, please?
Thanks!
-David
<Window x:Class="telerik_context_menu_taborder.MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="MainWindow" Height="350" Width="525"> <Grid> <Rectangle Fill="Black" Width="100" Height="50"> <telerik:RadContextMenu.ContextMenu> <telerik:RadContextMenu KeyboardNavigation.TabNavigation="Cycle" > <Grid> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition /> <RowDefinition /> </Grid.RowDefinitions> <TextBox Grid.Row="0" Text="TextBox1" /> <TextBox Grid.Row="1" Text="TextBox2" /> <TextBox Grid.Row="2" Text="TextBox3" /> </Grid> </telerik:RadContextMenu> </telerik:RadContextMenu.ContextMenu> </Rectangle> </Grid></Window>