views:

682

answers:

2

I populate the GridView.DataSource from a EntityFramework Model:

gwTimeLog.DataSource = _entities.TimeLogs;

When a new row is added to the _entities, I try to update the grid (tried using the same statement as above, setting it null, then back to _entities.TimeLogs, etc...), but the grid simply won't update. Even though _entities.TimeLogs actually does contain the new rows.

What am I missing?

+3  A: 

OLD ANSWER: Did you try calling GridView.DataBind()?

Woops, I thought this was a WebForms DataGrid.

If you're on WinForms, you might want to look into the BindingSource class. Binding to that class instead of straight to your list will provide update notification, etc.

The following code works for me:

        List<Person> names = new List<Person>();
        names.Add(new Person(){
            FirstName = "Steve",
            LastName = "Jobs"
        });
        names.Add(new Person()
        {
            FirstName = "Bill",
            LastName = "Gates"
        });

        BindingSource source = new BindingSource();
        source.DataSource = names;
        dataGridView1.DataSource = source;

        names.Add(new Person()
        {
            FirstName = "Steve",
            LastName = "Balmer"
        });

        source.ResetBindings(false);
statichippo
Winforms, not ASP.NET
AngryHacker
My mistake. Revised.
statichippo
BindingSource @ MSDN: http://msdn.microsoft.com/en-us/library/system.windows.forms.bindingsource.aspx
statichippo
Still does not work. I simply want the grid to update. I don't really need update notification. Maybe it's the underlying data which is the Entity Framework.
AngryHacker
i posted the code above. the underlying data shouldn't matter. did you call ResetBindings()?
statichippo
A: 

The answer is to have the gridview connected to the BindingList rather than the List.

AngryHacker