This is a migrated thread and some comments may be shown as answers.

GridViewDataColumn's CellEditTemplate navigation issue

0 Answers 383 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Alex Suutri
Top achievements
Rank 1
Alex Suutri asked on 28 Feb 2013, 08:05 AM
Hello telerik team. I have problem with CellEditTemplate navigation. I have GridViewDataColumn with RadMaskedNumericInput CellEditTemplate:
<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?

No answers yet. Maybe you can help?

Tags
GridView
Asked by
Alex Suutri
Top achievements
Rank 1
Share this question
or