views:

708

answers:

1
const int index = 1;
object val = repositoryItemComboBox3.Items[index];
gridView2.SetRowCellValue(gridView2.FocusedRowHandle,
object w= gridView2.GetRowCellValue(gridView2.FocusedRowHandle, "gridColumn3",val);

but w does not gets updated what do I have to do more?

A: 

The sample won't even compile, but in GetRowCellValue you have to supply the actual GridColumn object or the fieldname of the column. It looks like you're passing the column name instead.

burnside