The problem I have is that updates work (hit the db and are reflected in the grid) but while inserts do hit the db they are not reflected in the grid.
I'm using a basic InsertionRow
<xcdg:DataGridControl.View>
<xcdgv:TableView ShowFixedColumnSplitter="False" ShowRowSelectorPane="False" UseDefaultHeadersFooters="False" ShowScrollTip="True">
<xcdgv:TableView.FixedHeaders>
<DataTemplate>
<xcdg:ColumnManagerRow />
</DataTemplate>
<DataTemplate>
<xcdg:InsertionRow />
</DataTemplate>
</xcdgv:TableView.FixedHeaders>
<xcdgv:TableView.Theme>
<xcdg:WMP11Theme xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid" />
</xcdgv:TableView.Theme>
</xcdgv:TableView>
</xcdg:DataGridControl.View>
Anyone got any bright ideas what I'm missing?