This question is locked. New answers and comments are not allowed.
It seems that with RadComboBoxes, and possibly other Telerik controls, that if you want to tab from one control to another that you have to hit the tab key twice instead of once just to switch to the next item. The XAML below behaves correctly with standard comboboxes but not with Telerik comboboxes. Is there a planned fix or simple workaround?
Thanks
<ContentControl TabNavigation="Cycle" HorizontalAlignment="Center" VerticalAlignment="Center"> <StackPanel> <tInput:RadComboBox Height="40" Width="150" TabIndex="0"/> <tInput:RadComboBox Height="40" Width="150" TabIndex="1"/> <tInput:RadComboBox Height="40" Width="150" TabIndex="2"/> </StackPanel></ContentControl>Thanks