How to change the value of the unbound column when the other column is edited
The unbound column is using valueconverter
That code looks fine, I don't understand what the problem is.
Attached is a sample
Edit the inttValue cell, tab / click off the cell being editted to end edit mode, and the unbound column will update. You need to finalize the editing for the ExitEditMode to fire.
I have code as
e)
{
)
key = e.Cell.Column.Key;
;
xxXamGrid.Rows[0].Cells[unboundColumn].Refresh();
}
I would need a sample to know what was going on. When a cell stops being the active cell the editing should finalize and allow for the events to fire.
I have to do it twice for some reason
What do you mean you have to go to another cell, do you mean to fire the exit edit mode? Yes you need to lose focus to end editing. But until you leave edit mode the value of the cell is not changed, so you wouldn't have the new value until you exit edit mode.