Hello All.
I have an Ultrawebgrid and I update my rows with UpdateRowBatch.
I'm able to update all my rows except the first. Why ?
Updaterowbatch code :
void
UWG_UpdateRowBatch(object sender, Infragistics.WebUI.UltraWebGrid.RowEventArgs e)
{
mytableTableAdapter
ta = new mytableTableAdapter();
ta.Fill(ds.mytable, num);
(e.Row.DataChanged)
try
dr[c.Column.Key] = c.Value;
}
catch
e.Row.DataKey = e.Row.Cells.FromKey("
ID").Value;
ta.Update(ds);
Have you ever encountered this situation ?
Best regards.