How can I edit the value of other cell on the fly based on change in one of the cells in xamgrid
Xamgrid has 2 columns with data from db
one column is editable
If i enter value in that editable column the value of other column should be calculated on fly
I am using IValueconverter but it isnt serving purpose
No not unbound column, both are from the database
Hi,
I'm assuming you're using an UnboundColumn for the field you want to be updated?
If so, there is a Refresh method on a Cell, which you can call.
cell.Refresh();
However, there was a bug that caused this method not to work on UnboundCells, which will be coming out in the next SR, very soon.
-SteveZ