Want to change the value of one cell based on the value of other. Here is want I'm doing.
The RadGridView (unbounded) is not displaying the the changed value. Both columns are of type GridViewComboBoxColumn.
private void trDetailsRadGridView_CellValueChanged(object sender, GridViewCellEventArgs e)
{
if(e.Column.HeaderText == "Acc Code")
{
e.Row.Cells["accTitle"].Value = e.Row.Cells["accCode"].Value;
}
}
The RadGridView (unbounded) is not displaying the the changed value. Both columns are of type GridViewComboBoxColumn.
private void trDetailsRadGridView_CellValueChanged(object sender, GridViewCellEventArgs e)
{
if(e.Column.HeaderText == "Acc Code")
{
e.Row.Cells["accTitle"].Value = e.Row.Cells["accCode"].Value;
}
}