Hi,
I'll explain my issue with an example:
1. You are on row 2 of grid. You click on row 3.
2. NodeSelectedChange is raised for node.index = 2
3. NodeSelectedChange is raised for node.index = 3, so I know there's been a row selection change.
Now if I use the tab key when I'm on the last cell of row 2:
1.I'm on last cell of row 2 and I press tab key
2.NodeSelectedChange is raised for node.index = 2
and that's it. NodeSelectedChange is not raised for node.index = 3 and therefore I can't detect a row change. What's going on? Is this a bug?
Thx