views:

2502

answers:

1

In silverlight 2 it was possible to add new rows to the collection through the DataGrid. But in silverlight 3 I cannot figure out how to do this without using a DataForm. Any idea?

A: 

I've had good luck in the past simply adding a blank row to the data source and then checking for non-null values when the datagrid is updated. The user can just click in the empty row and add the information and the update routine can insert the values from there.

Steve French