We're using RIA Services / Silverlight 4, and I'm binding a datagrid to something like Context.Foo.
I can see validation errors appearing in the datagrid's validation summary when users try to enter empty strings into mandatory fields and so forth, life is good.
However when I add a new item by calling something like Context.Foo.Add(new Foo) in the viewModel, the new row appears in the datagrid, but is never validated unless the user clicks on a cell.
Is there a way to ask the DataGrid is validate all items?