Workaround - listen for Reset of the rows collection and introduce your modification there: radGridView1.Rows.CollectionChanged += Rows_CollectionChanged; void Rows_CollectionChanged(object sender, Telerik.WinControls.Data.NotifyCollectionChangedEventArgs e) { if (e.Action == Telerik.WinControls.Data.NotifyCollectionChangedAction.Reset) { foreach (GridViewRowInfo row in radGridView1.Rows) { row.Cells[0].Value = false; } } }