This question is locked. New answers and comments are not allowed.
Hi!
I have a grid, that contains some cells with controls in them - drop down, text box and so on.
The issue is that when I start to edit one cell, and tab to the next, and that cell contains a control. It will then tab to the cell not the control which will create a very odd scenario for the user. Is it possible to set it to tab to the control instead somehow?
I have a grid, that contains some cells with controls in them - drop down, text box and so on.
The issue is that when I start to edit one cell, and tab to the next, and that cell contains a control. It will then tab to the cell not the control which will create a very odd scenario for the user. Is it possible to set it to tab to the control instead somehow?
<telerik:RadGridView.Columns> <telerik:GridViewDataColumn UniqueName="ProductCode" Width="150" DataMemberBinding="{Binding Task.ProductCode}" IsGroupable="False"> <telerik:GridViewDataColumn.Header> <TextBlock Text="Delivery Item (Task Product-doc nr)" TextWrapping="Wrap" MaxHeight="50"/> </telerik:GridViewDataColumn.Header> </telerik:GridViewDataColumn> <telerik:GridViewDataColumn UniqueName="Task.Description" Header="Description" IsGroupable="False" TextWrapping="Wrap" Width="250"> <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <TextBox AcceptsReturn="True" MinWidth="150" TextWrapping="Wrap" TabIndex="0" IsReadOnly="{Binding IsReadOnly}" Text="{Binding Task.Description, Mode=TwoWay}"/> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn> <telerik:GridViewDataColumn UniqueName="SelectedDepartment.Name" SortMemberPath="Name" IsGroupable="False" Width="100"> <telerik:GridViewDataColumn.Header> <TextBlock Text="Responsible Department" TextWrapping="Wrap" MaxHeight="50"/> </telerik:GridViewDataColumn.Header> <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <ComboBox ItemsSource="{Binding DepartmentEntities}" IsEnabled="{Binding IsEnabled}" SelectedValuePath="Id" DisplayMemberPath="Name" SelectedItem="{Binding SelectedDepartment, Mode=TwoWay}"> </ComboBox> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn>