Hi and thank you for looking at my issue!
I am trying to tab through the header cells in a radgridview and trying to skip focus on the cells themselves and go straight to the control. I have read some threads that suggest using a custom CellTemplate but I also have the complexity of a stackpanel and textblocks in addition to a radcombobox (see below):
<telerik:GridViewBoundColumnBase UniqueName="PriceColumn" >
<telerik:GridViewBoundColumnBase.Header>
<StackPanel>
<TextBlock Text="PRICE" />
<telerik:RadComboBox ItemsSource="{Binding Path=DataSource.PriceList, Source={StaticResource ViewModel}}"
SelectedValue="{Binding Path=DataSource.InstructPriceForAll, Source={StaticResource ViewModel}, Mode=TwoWay}"
IsEnabled="{Binding Path=DataSource.IsPriceForAllEnabled, Source={StaticResource ViewModel}}"
DisplayMemberPath="Text" SelectedValuePath="Value" Width="15" />
</StackPanel>
</telerik:GridViewBoundColumnBase.Header>
<telerik:GridViewBoundColumnBase.CellTemplate>...</telerik:GridViewBoundColumnBase.CellTemplate>
</telerik:GridViewBoundColumnBase>
So my question is, how do i tab straight to the Radcombobox instead of the cell itself?
Thank you for your time!
I am trying to tab through the header cells in a radgridview and trying to skip focus on the cells themselves and go straight to the control. I have read some threads that suggest using a custom CellTemplate but I also have the complexity of a stackpanel and textblocks in addition to a radcombobox (see below):
<telerik:GridViewBoundColumnBase UniqueName="PriceColumn" >
<telerik:GridViewBoundColumnBase.Header>
<StackPanel>
<TextBlock Text="PRICE" />
<telerik:RadComboBox ItemsSource="{Binding Path=DataSource.PriceList, Source={StaticResource ViewModel}}"
SelectedValue="{Binding Path=DataSource.InstructPriceForAll, Source={StaticResource ViewModel}, Mode=TwoWay}"
IsEnabled="{Binding Path=DataSource.IsPriceForAllEnabled, Source={StaticResource ViewModel}}"
DisplayMemberPath="Text" SelectedValuePath="Value" Width="15" />
</StackPanel>
</telerik:GridViewBoundColumnBase.Header>
<telerik:GridViewBoundColumnBase.CellTemplate>...</telerik:GridViewBoundColumnBase.CellTemplate>
</telerik:GridViewBoundColumnBase>
So my question is, how do i tab straight to the Radcombobox instead of the cell itself?
Thank you for your time!