Home › Forums › WinForms controls › Xceed Grid for WinForms › DataRowsChanged Event › Reply To: DataRowsChanged Event
Try this:<code>grid.DataRowTemplate.CellValueChanged += new EventHandler(grid_DataRow_CellValueChanged);
private void grid_DataRow_CellValueChanged(object sender, EventArgs e) {
Xceed.Grid.DataRow row = sender as Xceed.Grid.DataRow;
if (row != null) {
// row is the DataRow that was modified
}
}</code>
Imported from legacy forums. Posted by Tommy (had 339 views)