Hi
When I set the tabindex property for a checkbox which is inside a tab. After the tabindex of this checkbox it goes directly to the next tab without going to the next tabindex I set in the tab.
What's wrong?
Xaml is given below:
<igEditors:XamCheckEditor Margin="203,88,0,0" Name="chkIsActiveFlag" Focusable="True" IsHitTestVisible="True" IsEnabled="True" IsThreeState="False" IsInEditMode="False" IsAlwaysInEditMode="False" Height="15" VerticalAlignment="Top" HorizontalAlignment="Left" Width="15.287" TabIndex="9" Visibility="Visible" />
<!--Next tabindex--> <igRibbon:LabelTool Margin="11,110,0,0" Name="lblBookingAmount" Height="13.277" VerticalAlignment="Top" HorizontalAlignment="Left" Width="82.827" Foreground="#FF333333" TabIndex="10">Booking Amount</igRibbon:LabelTool>
<!--but going to this control-->
<igWindows:TabItemEx Header="Payment schedule installment" x:Name="tabPaymentScheduleInstallment" Loaded="tabPaymentScheduleInstallment_Loaded" TabIndex="16">
Thanks
Asif Abdulla
I believe the issue is that when the check editor gets focus it is focusing the checkbox within it. This is confusing the tab navigation. You should report this to the support group. For now, you can get around this by setting the KeyboardNavigation.TabNavigation of the XamCheckEditor to Local and the IsTabStop to False.