Hello telerik team. I have problem with CellEditTemplate navigation. I have GridViewDataColumn with RadMaskedNumericInput CellEditTemplate:
The problem is in navigation: when i'm ending editing of this cell i cannot navigate to the next row's cell on hitting enter button. Navigation work's only with Tab button. How can i achieve desired result?
<telerik:GridViewDataColumn Name="RateColumn" DataMemberBinding="{Binding Rate,Mode=TwoWay}" Header="{x:Static properties:Resources.CurrencyRateHeader}" DataFormatString="{} {0:#########0.00000000}"> <telerik:GridViewDataColumn.CellEditTemplate> <DataTemplate> <controls:RadMaskedNumericInput InputBehavior="Insert" Value="{Binding Rate, Mode=TwoWay}" IsClearButtonVisible="False" Mask="##.########" FormatString="########00.00000000" SpinMode="PositionAndValue" UpdateValueEvent="PropertyChanged" SelectionOnFocus="SelectAll" KeyboardNavigation.TabNavigation="Local" HorizontalAlignment="Stretch" /> </DataTemplate> </telerik:GridViewDataColumn.CellEditTemplate> </telerik:GridViewDataColumn>The problem is in navigation: when i'm ending editing of this cell i cannot navigate to the next row's cell on hitting enter button. Navigation work's only with Tab button. How can i achieve desired result?