hi
I have an EntityFramework table as my ItemsSource:
Ent = new Data.xEntities();
RadViewGrid.ItemsSource = Ent.Table;
If I insert a row from the "new row" row in the grid it disappears an does not show in the grid. Even if I Rebind() the grid.
If I
Ent.SaveChanges();
RgvUsers.Rebind();
it works. But I would like to save all changes at once via a Save Button.
How can I make the inserted row show in the grid without committing it back to the db? Thanks.
Regards,
Michael