I have a grid view with the integer column sorted ascending by default.
At this time, for other event, I am updating this integer column and the values are getting modified in the UI correctly.
But at this case, the sorting is not getting applied correctly.
For example, By default my UI is like below
1
2
3
I have updated the row with value 2 with 5. Then my UI becomes
1
5
3
instead of
1
3
5
Please let me know, how to achieve this.