is there a quick way to get the rows that have been added using the "AddNew" row in the grid?
thanks !
I ended up using the AfterRowInsert event:
protected virtual void GenericGrid_AfterRowInsert(object sender, RowEventArgs e) { InvalidAddedObjList.Add(e.Row.ListObject); }
thanks anyway.
Well, assuming the row was added to the root level, you can just get the last row:
this.ultraGrid1.Rows[this.ultraGrid1.Rows.Count-1]