Hey guys,
I have a datagrid with data like this:
Column1 Column2
1 10
2 11
3 10
4 10
When clicking Column2 and using Default Sort,the datagrid turns into this:
Column1 Column2
3 10
1 10
4 10
2 11
Why's that?I suppose it should be:
Column1 Column2
1 10
3 10
4 10
2 11
What's wrong with default sorting?Could anyone tell me how to fix it?
Thanks!