Hi!!
I'm noting some situation about GridViewNewRowInfo, because when CellEndEdit in first GridViewColumnComboBox column, I'm trying to put some text in a non-editable cell - 2nd column - according to index selected in first column, but text cells doesn't reflect the change (It keeps showing data text from DefaultValuesNeeded). I'm trying some like this into CellEndEdit event:
I'm noting some situation about GridViewNewRowInfo, because when CellEndEdit in first GridViewColumnComboBox column, I'm trying to put some text in a non-editable cell - 2nd column - according to index selected in first column, but text cells doesn't reflect the change (It keeps showing data text from DefaultValuesNeeded). I'm trying some like this into CellEndEdit event:
if (grdGridData.CurrentRow is GridViewNewRowInfo)
((GridViewNewRowInfo)grdGridData.CurrentRow).Cells["DESCRIPTION"].Value = "Some text...";
Thanks