There are methods on the rows collection to help you do this.
UltraGridRow[ rows = this.ultraGrid1.Rows.GetFilteredInNonGroupByRows(); foreach (UltraGridRow row in rows) { // Do Something }
then i use this code
foreach (UltraGridRow rw in grdListe.DisplayLayout.Rows.GetFilteredInNonGroupByRows()) { dt.Rows.Add(rw); }
bu dt (DataTable) not convert to UltraGridRow and can not add..
how i can do this ?
thanks
Thats great, exactly what I was after cheers.