how to iterate WebDataGrid Rows
New DiscussionHi, for UltraWebGrids I used the next code to iterate the ultrawebgrid rows.
foreach (Infragistics.WebUI.UltraWebGrid.UltraGridRow SRC in this.WebDataGridGastosProp.Behaviors.Selection.SelectedRows)
{
BE.GastosParticulares unGasto = new BE.GastosParticulares();
unGasto.Codigo = int.Parse(SRC.Cells[0].Text.ToString());
unGasto.Importe = decimal.Parse(SRC.Cells[5].Text.ToString());
lista.Add(unGasto);
}
But which would be the equivalent on WebDataGrid ?
Thanks!
Regards.
Sign In
to post a reply
Replies
Discussion created by
Favorites
Replies
Created On
Last Post
Discussion created by
Favorites
0 Replies
6 Created On
Jan 31, 2014 Last Post
12 years, 1 month ago