This question is locked. New answers and comments are not allowed.
Hi,
My grid is being populated by ObservableCollection IList.
If i change my column1 value, the column2 is also get changed.
I have implemented it by changing column2 value in ObservableCollection.
This works fine till i sort the grid.
if i sort on column1 and change the value of column1 in such a way that new value will make row to change it position.
them the new column2 value get updated in row which take place on the changed row.
eg
col1 col2
A 1
B 2
C 3
before sorting, if i make A1 to B1
col1 col2
B1 I m updated
B 2
C 3
but after sorting on col1, if i make A1 to B1
col1 col2
B I m updated
B1 2
C 3
Now my question is, can i get old and new position of row, after sorting.
or if you can suggest some other solution.
Rdg
Alfa
