views:

22

answers:

2

I have a DataGridView with a DataGridViewCheckBoxColumn column, which is databound to a list. The problem is that the databound boolean property for this checkbox is updated not when the check box is checked/unchecked, but after the CellLeave event in other words after the cell looses focus. I want this property to be updated right after the check/uncheck. There's an event CurrentCellDirtyStateChanged which is fired right after check/uncheck happens, so I can use it to update the propery manually. Is there a better way to do this?

+1  A: 

You can listen for the CurrentCellDirtyStateChanged event and force Commit the change:

void dataGridView1_CurrentCellDirtyStateChanged(object sender,
    EventArgs e)
{
    if (dataGridView1.IsCurrentCellDirty)
    {
        dataGridView1.CommitEdit(DataGridViewDataErrorContexts.Commit);
    }
}
SwDevMan81
Thanks! That's exactly it.
Max
A: 

take a look at Binding.UpdateSourceTrigger Property

http://msdn.microsoft.com/en-us/library/system.windows.data.binding.updatesourcetrigger(VS.95).aspx

Tom
Is this for silverlight?
Max
yes, if you note the msdn documentation is for silverlight. I haven't actually used it myself yet, but there are some examples out there on google.
Tom