I use DomainDataSource an RIA to display and editing data.
Change values works fine so far, whereas insert row is readonly.
Here is my GridView-Definition:
<Controls:RadGridView MaxHeight="550" Grid.Row="1" ShowInsertRow="True" VerticalAlignment="Top" RowIndicatorVisibility="Collapsed" SelectionUnit="FullRow"
ItemsSource="{Binding Data, ElementName=schuleDataSource}" IsBusy="{Binding IsBusy, ElementName=schuleDataSource}" MinHeight="100" IsReadOnly="False" ShowGroupPanel="False" AutoGenerateColumns="False" CanUserFreezeColumns="False" IsFilteringAllowed="True" telerikGridViewHeaderMenu:GridViewHeaderMenu.IsEnabled="True">
The first row is empty - even without column borders. It seems something goes wrong.
I have NO code behind to handle beginInsert or something like that (do I need this?)
The first column contains the primary key - readonly for update but of course writeable for insert.
Could that be a problem?
Thanks
Berthold