This question is locked. New answers and comments are not allowed.
Hi,
Ver: 2010.2.924.1040
I'm having a strange behavior navigating with tab in a gridview IN EDIT MODE with a column that has a radcombobox as CellEditTemplate.
If I open the dropdown (with mouse) and hit tab the focus leaves the grid and was suposed to go to next cell.
I've upgrade the controls today and I think that this behaviour was not happening in previous version.
Here Is the code:
Behing :
Could you help me here ?
Thanks,
Joao
Ver: 2010.2.924.1040
I'm having a strange behavior navigating with tab in a gridview IN EDIT MODE with a column that has a radcombobox as CellEditTemplate.
If I open the dropdown (with mouse) and hit tab the focus leaves the grid and was suposed to go to next cell.
I've upgrade the controls today and I think that this behaviour was not happening in previous version.
Here Is the code:
<Grid x:Name="LayoutRoot"> <telerik:RadGridView x:Name="grdOrders" Grid.Row="0" AutoGenerateColumns="False" ShowGroupPanel="False" CanUserFreezeColumns="False" CanUserReorderColumns="False" CanUserSortColumns="False" IsFilteringAllowed="False" EditTriggers="CellClick" CanUserDeleteRows="True" CanUserInsertRows="False"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn Header="Combo" > <telerik:GridViewColumn.CellEditTemplate> <DataTemplate> <telerik:RadComboBox ItemsSource="{Binding Path=list}" SelectedItem="{Binding Path=prop,Mode=TwoWay}" IsEditable="True" IsReadOnly="False" TextSearchMode="Contains" FilteringMode="Contains" IsFilteringEnabled="True" OpenDropDownOnFocus="True"/> </DataTemplate> </telerik:GridViewColumn.CellEditTemplate> </telerik:GridViewDataColumn> <telerik:GridViewDataColumn Header="Text" DataMemberBinding="{Binding Path=prop, Mode=TwoWay}" /> </telerik:RadGridView.Columns> </telerik:RadGridView> </Grid>Behing :
public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); grdOrders.ItemsSource = new List<A> { new A { prop = "A" }, new A { prop = "B" }, new A { prop = "C" }, new A { prop = "D" } }; } } public class A { public string prop {get;set;} public List<string> list { get; set; } public A() { list = new List<string> { "ABC","BCD","CDE","DEF"}; } }Could you help me here ?
Thanks,
Joao