Hello, i have a radgridview where you are supposed insert new rows and read data.
the user should not be able to edit data that has been added.
the problem is when the user press "add new row" and during the typing of a new row he can press the up and down arrow keys and navigate to the other row items whitch he shouldnt be allowed to edit.
please help
see grid markup bellow:
<telerikGridView:RadGridView Margin="12,0,0,0" Grid.Row="1" Grid.Column="1" x:Name="RadGridView6"
MaxHeight="115"
RowIndicatorVisibility="Collapsed"
CanUserFreezeColumns="False"
ItemsSource="{Binding JournalItems}" SelectionMode="Single" CanUserSelect="True" EditTriggers="None" ShowGroupPanel="False" CanUserInsertRows="True" ShowInsertRow="{Binding CanType}" ShowColumnHeaders="False" ScrollViewer.HorizontalScrollBarVisibility="Disabled"
AutoGenerateColumns="False">
<telerikGridView:RadGridView.Columns>
<telerikGridView:GridViewDataColumn Header="{Binding LocalizedStrings.view_kundeinfo_journal_dato, Source={StaticResource LocalizedStrings}}"
DataMemberBinding="{Binding p_Dato,Converter={StaticResource DateTimeConverter}}" TextAlignment="Left" />
<telerikGridView:GridViewDataColumn Header="{Binding LocalizedStrings.view_kundeinfo_journal_text, Source={StaticResource LocalizedStrings}}" Width="*" TextWrapping="Wrap"
DataMemberBinding="{Binding p_Tekst}" >
</telerikGridView:GridViewDataColumn>
</telerikGridView:RadGridView.Columns>
the user should not be able to edit data that has been added.
the problem is when the user press "add new row" and during the typing of a new row he can press the up and down arrow keys and navigate to the other row items whitch he shouldnt be allowed to edit.
please help
see grid markup bellow:
<telerikGridView:RadGridView Margin="12,0,0,0" Grid.Row="1" Grid.Column="1" x:Name="RadGridView6"
MaxHeight="115"
RowIndicatorVisibility="Collapsed"
CanUserFreezeColumns="False"
ItemsSource="{Binding JournalItems}" SelectionMode="Single" CanUserSelect="True" EditTriggers="None" ShowGroupPanel="False" CanUserInsertRows="True" ShowInsertRow="{Binding CanType}" ShowColumnHeaders="False" ScrollViewer.HorizontalScrollBarVisibility="Disabled"
AutoGenerateColumns="False">
<telerikGridView:RadGridView.Columns>
<telerikGridView:GridViewDataColumn Header="{Binding LocalizedStrings.view_kundeinfo_journal_dato, Source={StaticResource LocalizedStrings}}"
DataMemberBinding="{Binding p_Dato,Converter={StaticResource DateTimeConverter}}" TextAlignment="Left" />
<telerikGridView:GridViewDataColumn Header="{Binding LocalizedStrings.view_kundeinfo_journal_text, Source={StaticResource LocalizedStrings}}" Width="*" TextWrapping="Wrap"
DataMemberBinding="{Binding p_Tekst}" >
</telerikGridView:GridViewDataColumn>
</telerikGridView:RadGridView.Columns>